Skip to content

Commit

Permalink
add a workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
phyzical committed Oct 2, 2024
1 parent 1484e6a commit 583414f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Publish
on:
push:
branches:
- main
# TODO: lock down main pushes
jobs:
publish:
concurrency:
group: publish
cancel-in-progress: false
permissions:
id-token: write
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Run pkg_build.sh
run: ./pkg_build.sh
- name: Commit changes
run: |
git add archive/* *.plg
git commit -m "Publish plg changes"
git push

0 comments on commit 583414f

Please sign in to comment.