diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 995fa016..2335dc3e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -73,10 +73,10 @@ jobs: path: dist/ key: ${{ github.ref }} enableCrossOsArchive: true - - run: go run ./cmd/nfpm/... pkg -f ./testdata/acceptance/core.complex.yaml -p deb -t ./tmp/ - - run: go run ./cmd/nfpm/... pkg -f ./testdata/acceptance/core.complex.yaml -p rpm -t ./tmp/ - - run: go run ./cmd/nfpm/... pkg -f ./testdata/acceptance/core.complex.yaml -p apk -t ./tmp/ - - run: go run ./cmd/nfpm/... pkg -f ./testdata/acceptance/core.complex.yaml -p archlinux -t ./tmp/ + - run: go run ./cmd/nfpm/... pkg -f ./testdata/acceptance/core.complex.yaml -p deb -t ./dist/ + - run: go run ./cmd/nfpm/... pkg -f ./testdata/acceptance/core.complex.yaml -p rpm -t ./dist/ + - run: go run ./cmd/nfpm/... pkg -f ./testdata/acceptance/core.complex.yaml -p apk -t ./dist/ + - run: go run ./cmd/nfpm/... pkg -f ./testdata/acceptance/core.complex.yaml -p archlinux -t ./dist/ install-pkgs-built-on-windows: runs-on: ubuntu-latest needs: [build-pkgs-on-windows] @@ -88,8 +88,8 @@ jobs: key: ${{ github.ref }} enableCrossOsArchive: true - run: ls -lha dist - - run: docker run --rm --workdir /tmp -v $PWD/./tmp:/tmp fedora rpm -ivh *.rpm - - run: docker run --rm --workdir /tmp -v $PWD/./tmp:/tmp ubuntu dpkg -i *.deb + - run: docker run --rm --workdir /tmp -v $PWD/dist:/tmp fedora rpm -ivh *.rpm + - run: docker run --rm --workdir /tmp -v $PWD/dist:/tmp ubuntu dpkg -i *.deb acceptance-tests: strategy: