diff options
| author | Asko Nõmm <asko@nmm.ee> | 2025-04-18 17:30:43 +0300 |
|---|---|---|
| committer | Asko Nõmm <asko@nmm.ee> | 2025-04-18 17:30:43 +0300 |
| commit | dd6adf7febf45aa72e9754f13059d40648114027 (patch) | |
| tree | e770350fd275292b8fc6c37496a6bec79ebf19f1 | |
| parent | 5b6f42ce454ea80304339d86815d1262c4ec30b4 (diff) | |
Create publish workflow
| -rw-r--r-- | .github/workflows/publish.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..ad5781d --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,19 @@ +name: Publish +on: + push: + branches: + - main + +jobs: + publish: + runs-on: ubuntu-latest + + permissions: + contents: read + id-token: write + + steps: + - uses: actions/checkout@v4 + + - name: Publish package + run: npx jsr publish |
