add only uniq deps in dependsOn (#4943) #590
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: Canary build | |
on: | |
push: | |
branches: | |
- 'main' | |
paths: | |
- '**.go' | |
- 'go.mod' | |
- 'Dockerfile.canary' | |
- '.github/workflows/canary.yaml' | |
workflow_dispatch: | |
jobs: | |
build-binaries: | |
name: Build binaries | |
uses: ./.github/workflows/reusable-release.yaml | |
with: | |
goreleaser_config: goreleaser-canary.yml | |
goreleaser_options: '--snapshot --clean --timeout 60m' # will not release | |
secrets: inherit | |
upload-binaries: | |
name: Upload binaries | |
needs: build-binaries # run this job after 'build-binaries' job completes | |
runs-on: ubuntu-latest | |
steps: | |
- name: Restore Trivy binaries from cache | |
uses: actions/[email protected] | |
with: | |
path: dist/ | |
key: ${{ runner.os }}-bins-${{github.workflow}}-${{github.sha}} | |
# Upload artifacts | |
- name: Upload artifacts (trivy_Linux-64bit) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: trivy_Linux-64bit | |
path: dist/trivy_*_Linux-64bit.tar.gz | |
if-no-files-found: error | |
- name: Upload artifacts (trivy_Linux-ARM64) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: trivy_Linux-ARM64 | |
path: dist/trivy_*_Linux-ARM64.tar.gz | |
if-no-files-found: error | |
- name: Upload artifacts (trivy_macOS-64bit) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: trivy_macOS-64bit | |
path: dist/trivy_*_macOS-64bit.tar.gz | |
if-no-files-found: error | |
- name: Upload artifacts (trivy_macOS-ARM64) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: trivy_macOS-ARM64 | |
path: dist/trivy_*_macOS-ARM64.tar.gz | |
if-no-files-found: error |