diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..576fc87 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,21 @@ +on: + push: + branches: + - main + +jobs: + release: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + + - uses: denoland/setup-deno@v1 + with: + deno-version: vx.x.x + + - run: deno run --allow-net --allow-env --allow-run https://deno.land/x/shipit/shipit.ts + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}