Update github.com/rancher/lasso digest to 66dc89c - autoclosed #450
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: CI on Pull Request | |
on: | |
pull_request: | |
jobs: | |
test-build-linux: | |
runs-on: ubuntu-latest | |
container: | |
image: rancher/dapper:v0.6.0 | |
permissions: | |
contents: read | |
strategy: | |
matrix: | |
os: [ linux ] | |
arch: [ amd64, arm64 ] | |
steps: | |
- name: Fix the not-a-git-repository issue | |
run: | | |
apk -U add git | |
git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set environment variables | |
run: | | |
echo "DAPPER_HOST_ARCH=${{ matrix.arch }}" >> "$GITHUB_ENV" | |
echo "GH_VERSION=${{ github.ref_name }}" >> "$GITHUB_ENV" | |
echo "GOARCH=${{ matrix.arch }}" >> "$GITHUB_ENV" | |
echo "GOOS=${{ matrix.os }}" >> "$GITHUB_ENV" | |
echo "CROSS=false" >> "$GITHUB_ENV" | |
- name: build with Dapper | |
run: dapper gha-ci |