Update client version to 0.59.8 #46
Workflow file for this run
This file contains hidden or 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: Release | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| branches: | |
| - main | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || github.actor_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| release: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Build | |
| id: build | |
| uses: vmactions/[email protected] | |
| with: | |
| usesh: true | |
| copyback: true | |
| release: "15.0" | |
| prepare: | | |
| pkg lock -y pkg | |
| mkdir -p /usr/local/etc/pkg/repos | |
| sh -c 'cat > /usr/local/etc/pkg/repos/FreeBSD.conf <<EOF | |
| FreeBSD: { | |
| url: "pkg+http://pkg.FreeBSD.org/FreeBSD:14:amd64/quarterly", | |
| mirror_type: "srv", | |
| signature_type: "fingerprints", | |
| fingerprints: "/usr/share/keys/pkg", | |
| enabled: yes | |
| } | |
| EOF' | |
| env ABI=FreeBSD:14:amd64 env IGNORE_OSVERSION=yes pkg update | |
| pkg install -y git go124 ca_root_nss | |
| git clone -b devel --depth 1 --single-branch https://github.com/pfsense/FreeBSD-ports.git /usr/ports | |
| run: | | |
| set -ex | |
| cd pfSense-pkg-NetBird | |
| make | |
| make package | |
| cd ../netbird | |
| make makesum | |
| make package | |
| - name: Upload pfSense package artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: pfSense-package | |
| path: pfSense-pkg-NetBird/work/pkg/pfSense-pkg-NetBird-*.pkg | |
| retention-days: 3 | |
| - name: Upload FreeBSD package artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: FreeBSD-package | |
| path: netbird/work/pkg/netbird-*.pkg | |
| retention-days: 3 | |
| - name: Create Release | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: actions/create-release@v1 | |
| with: | |
| tag_name: ${{ github.ref_name }} | |
| release_name: ${{ github.ref_name }} | |
| draft: false | |
| prerelease: false | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Upload packages to release page | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| files: | | |
| pfSense-pkg-NetBird/work/pkg/pfSense-pkg-NetBird-*.pkg | |
| netbird/work/pkg/netbird-*.pkg | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |