From 25241c9df078268aae4f47987fb5bc750948677d Mon Sep 17 00:00:00 2001 From: Toby Date: Sat, 20 Jan 2024 10:42:14 -0800 Subject: [PATCH] ci: add release workflow action --- .github/workflows/release.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..a4bb335 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,26 @@ +on: + release: + types: [ created ] + +permissions: + contents: write + packages: write + +jobs: + releases-matrix: + name: Release Go Binary + runs-on: ubuntu-latest + strategy: + matrix: + goos: [ linux ] + goarch: [ "386", amd64, arm64 ] + steps: + - uses: actions/checkout@v4 + - uses: wangyoucao577/go-release-action@v1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + goos: ${{ matrix.goos }} + goarch: ${{ matrix.goarch }} + goversion: "https://go.dev/dl/go1.21.6.linux-amd64.tar.gz" + binary_name: "OpenGFW" + extra_files: LICENSE README.md README.zh.md \ No newline at end of file