Skip to content

Commit

Permalink
chore(ci): add a release job
Browse files Browse the repository at this point in the history
  • Loading branch information
boneskull committed Jul 29, 2024
1 parent d757d5e commit d70089d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
concurrency:
group: ${{ github.workflow }}

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: main
- uses: ./.github/actions/prepare
- run: npm build
- env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
uses: JoshuaKGoldberg/[email protected]

name: Release

on:
push:
branches:
- main

permissions:
contents: write
id-token: write

0 comments on commit d70089d

Please sign in to comment.