diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index f0f98e4..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Create release - -on: - release: - types: - - created - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Zip Folder - run: zip -r ${{ github.event.repository.name }}.zip ./Wrench/ - - - name: Release - uses: softprops/action-gh-release@v1 - if: startsWith(github.ref, 'refs/tags/') - with: - files: ${{ github.event.repository.name }}.zip - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}