Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Jul 11, 2023
1 parent 5c38f97 commit 0f98a23
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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:
Expand Down

0 comments on commit 0f98a23

Please sign in to comment.