mirror of
https://github.com/nesterow/offload.git
synced 2024-11-14 14:14:03 +00:00
20 lines
265 B
YAML
20 lines
265 B
YAML
|
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
|