ci: fix dependabot #30
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
pull_request: {} | |
workflow_dispatch: | |
inputs: | |
channel: | |
description: release channel | |
required: true | |
default: stable | |
version: | |
description: release version | |
required: true | |
default: current | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: setup Crossplane cli | |
uses: crossplane-contrib/xpkg-action@master | |
with: | |
channel: ${{ github.event.inputs.channel }} | |
version: ${{ github.event.inputs.version }} | |
command: -h | |
- name: move crossplane cli | |
run: "mkdir -p $TARGET_PATH && mv ./crossplane $TARGET_PATH" | |
env: | |
TARGET_PATH: "${{ github.workspace }}/bin" | |
- name: setup jsonnet-fmt | |
run: | | |
go install "github.com/google/go-jsonnet/cmd/[email protected]" | |
echo "$HOME/go/bin" >> "$GITHUB_PATH" | |
- name: setup jrsonnet | |
uses: Duologic/tanka-exporter-workflow/.github/actions/jrsonnet-install@main | |
- name: Build xpkg | |
run: "make -B build" | |
shell: bash | |
env: | |
CROSSPLANE: '${{ github.workspace }}/bin/crossplane' | |
- name: Check if file changed | |
id: changed | |
uses: tj-actions/verify-changed-files@v20 | |
with: | |
files: | | |
!bin | |
- name: No files changed | |
if: "${{ steps.changed.outputs.files_changed == 'true' }}" | |
run: "echo 'Please run `make build`' && exit 1" | |
env: | |
CHANGED_FILES: "${{ steps.changed.outputs.changed_files }}" |