fix: [#571] Upload docker images #951
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: Integration | |
'on': | |
push: | |
branches-ignore: | |
- dependabot/** | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
go-version-file: 'go.mod' | |
cache: false | |
- name: Install bats | |
run: | | |
set -x | |
sudo apt-get update | |
sudo apt-get install bats -y | |
- name: Integration test | |
run: | | |
./test/integration-tests.sh | |
env: | |
N3DR_DELIVERABLE: ${{ env.n3dr-deliverable }} | |
NEXUS_VERSION: ${{ matrix.nexus-version }} | |
N3DR_APT_GPG_SECRET: ${{ secrets.N3DR_APT_GPG_SECRET }} |