X-Git-Url: https://code.octet-stream.net/hashgood/blobdiff_plain/fe58ffda1c19d5c4d5b7ff3b42e0de7a6b7136ff..585a245dd6e90efc545dbd68f928da9e03086cb9:/.github/workflows/release.yml?ds=sidebyside diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index d3af78c..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: Release - -on: - push: - tags: - - v[0-9]+.* - -jobs: - create-release: - name: Create GitHub release - if: github.repository_owner == 'thombles' - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: taiki-e/create-gh-release-action@v1 - with: - changelog: CHANGELOG.md - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - upload-assets: - needs: create-release - strategy: - matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - include: - - os: windows-latest - features: paste - - os: macos-latest - features: paste - runs-on: ${{ matrix.os }} - steps: - - uses: actions/checkout@v2 - - uses: taiki-e/upload-rust-binary-action@v1 - with: - bin: hashgood - features: ${{ matrix.features || '' }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}