Skip to content

Commit

Permalink
build: make rpm/deb should not require latest golang
Browse files Browse the repository at this point in the history
they do not build anything anymore.
  • Loading branch information
sni committed Mar 20, 2024
1 parent 189b200 commit afa89d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
@@ -304,7 +304,7 @@ jobs:
echo "Building ${{ env.BIN }}.deb"
export DEBEMAIL="Sven Nierlein <sven.nierlein@consol.de>"
export DEBFULLNAME="Sven Nierlein"
GOARCH=${{ matrix.go-arch }} make VERSION=${{needs.get-version.outputs.version}} DEBFILE=${{ env.BIN }}.deb deb
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} VERSION=${{needs.get-version.outputs.version}} DEBFILE=${{ env.BIN }}.deb make deb
- uses: actions/upload-artifact@v4.3.1
with:
name: "${{ env.BIN }}.deb"
@@ -365,7 +365,7 @@ jobs:
- run: sudo apt-get install help2man
- run: |
echo "Building ${{ env.BIN }}.rpm"
GOARCH=${{ matrix.go-arch }} make rpm
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} make rpm
mv snclient*.rpm ${{ env.BIN }}.rpm
- uses: actions/upload-artifact@v4.3.1
with:

0 comments on commit afa89d5

Please sign in to comment.