From 069ca28f1fce39b68847f57c066c9b31471719ff Mon Sep 17 00:00:00 2001 From: Jelly Terra Date: Wed, 25 Sep 2024 15:39:20 +0800 Subject: [PATCH] Add `release.yml` workflow. --- .github/workflows/release.yml | 39 +++++++++++++++++++---------------- 1 file changed, 21 insertions(+), 18 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0204d5e..7b6b915 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,7 +1,7 @@ # This workflow will build a golang project # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go -name: Create Release +name: Release on: push: @@ -9,6 +9,9 @@ on: tags: - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 +permissions: + contents: write + jobs: build: name: Create Release @@ -28,28 +31,28 @@ jobs: shell: bash run: | set +e - go tool dist list | while IFS='/' read -ra TARGET - do - export GOOS=${TARGET[0]} - export GOARCH=${TARGET[1]} - echo "Building target $GOOS/$GOARCH" - go build -o ~/build/pagine-${{ github.ref }}-$GOOS-$GOARCH ./cmd/pagine - done + go build -o ~/build/pagine-${{ github.ref_name }}-linux-amd64 ./cmd/pagine - - name: Upload Artifact - uses: actions/upload-artifact@v4 - with: - name: pagine - path: ~/build/* + - name: Compress via Zstd + run: zstd ~/build/pagine-${{ github.ref_name }}-* + + - name: Generate Checksums + run: sha256sum ~/build/*zst > ~/build/SHA256SUMS.txt - name: Create Release id: create_release uses: actions/create-release@v1 env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token + GITHUB_TOKEN: ${{ github.token }} with: - tag_name: ${{ github.ref }} - release_name: ${{ github.ref }} - body: Changelog for ${{ github.ref }} + tag_name: ${{ github.ref_name }} + release_name: ${{ github.ref_name }} + body: Changelog for ${{ github.ref_name }} draft: true - prerelease: false \ No newline at end of file + prerelease: false + + - name: Upload Artifact + env: + GH_TOKEN: ${{ github.token }} + run: + gh release -R ${{ github.repository }} upload ${{ github.ref_name }} ~/build/SHA256SUMS.txt ~/build/*zst --clobber \ No newline at end of file