v1.0.2-fix #2
Workflow file for this run
This file contains 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: Binary-release | |
on: | |
workflow_dispatch: | |
release: | |
types: [created] | |
jobs: | |
generate: | |
name: Create release-artifacts | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@master | |
- name: Get version tag from env file | |
uses: c-py/action-dotenv-to-setenv@v2 | |
with: | |
env-file: .version | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21.1' | |
- run: go version | |
- name: Build and archive | |
run: build/ci/build.sh ${{ env.VERSION }} | |
- name: Build .deb package | |
run: build/ci/build-deb.sh ${{ env.VERSION }} | |
- name: Upload the artifacts | |
uses: skx/github-action-publish-binaries@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
args: 'watchyourlan-*' |