diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..17f3514 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,27 @@ +name: Draft Release +on: + push: + tags: + - "*" +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: "20.x" + - name: Build + run: | + npm install + npm run build + - name: Create Draft + env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + run: | + tag="${GITHUB_REF#refs/tags/}" + + gh release create "$tag" \ + --title="Release v$tag" \ + --draft \ + main.js manifest.json styles.css