Skip to content

Commit

Permalink
github: yolo
Browse files Browse the repository at this point in the history
  • Loading branch information
jperkin committed Dec 10, 2024
1 parent 59710c7 commit 3c67781
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-pkgin-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_dispatch:
jobs:
build-tags:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -39,8 +39,8 @@ jobs:
)
- name: Get tags to build
run: |
#tags=$(git tag | grep ^v)
tags="v24.12.0"
tags=$(git tag | grep ^v)
#tags="v24.12.0"
echo "tags=$tags" >> $GITHUB_ENV
- name: Build each tag
run: |
Expand All @@ -50,7 +50,7 @@ jobs:
mkdir build
(
cd build
nm ${GITHUB_WORKSPACE}/pkgsrc/pkgtools/libnbcompat/files/libnbcompat.a
../configure --help || true
env \
CFLAGS="-DHAVE_NBCOMPAT_H=1 -I${GITHUB_WORKSPACE}/pkgsrc/pkgtools/libnbcompat/files" \
LDFLAGS="-L${GITHUB_WORKSPACE}/pkgsrc/pkgtools/libnbcompat/files" \
Expand All @@ -66,9 +66,9 @@ jobs:
mv build/pkgin bin/pkgin-"$tag"
rm -rf build
done
tar -czf pkgin-bins.tar.gz ./bin
tar -czvf pkgin-bins.tar.gz ./bin
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pkgin-binaries
path: pkgin-bins.tar.gz

0 comments on commit 3c67781

Please sign in to comment.