diff options
author | heqnx <root@heqnx.com> | 2025-05-10 16:39:16 +0000 |
---|---|---|
committer | heqnx <root@heqnx.com> | 2025-05-10 16:39:16 +0000 |
commit | fad89d85f36ed704ccb5a9b6c50bdf5d0eecaba1 (patch) | |
tree | b5d78a4bfa71397cca7860d2bf0ebb5fd4b08bcb /.github | |
parent | c32177223442872d15ed1806e188d66c7b5d3bde (diff) | |
download | go-assembly-ldr-fad89d85f36ed704ccb5a9b6c50bdf5d0eecaba1.tar.gz go-assembly-ldr-fad89d85f36ed704ccb5a9b6c50bdf5d0eecaba1.zip |
initial commit
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-release.yaml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.github/workflows/build-release.yaml b/.github/workflows/build-release.yaml new file mode 100644 index 0000000..03c6deb --- /dev/null +++ b/.github/workflows/build-release.yaml @@ -0,0 +1,35 @@ +name: Build and Release go-assembly-ldr + +on: + push: + tags: + - 'v*' + +permissions: + contents: write + +jobs: + build-and-release: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version: '1.21.x' + + - name: Build binaries + run: make all + + - name: Release + uses: softprops/action-gh-release@v2 + with: + files: build/* + draft: false + prerelease: false + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |