diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index c29c84f..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,51 +0,0 @@ -name: Release - -on: - push: - tags: - - v[0-9]+.* - -jobs: - create-release: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: taiki-e/create-gh-release-action@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - upload-assets-linux: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: taiki-e/upload-rust-binary-action@v1 - with: - bin: web - tar: unix - zip: windows - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - upload-assets-macos: - runs-on: macos-latest - steps: - - uses: actions/checkout@v2 - - uses: taiki-e/upload-rust-binary-action@v1 - with: - bin: web - tar: unix - zip: windows - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - upload-assets-windows: - runs-on: windows-latest - steps: - - uses: actions/checkout@v2 - - uses: taiki-e/upload-rust-binary-action@v1 - with: - bin: web - tar: unix - zip: windows - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file