Merge pull request #12 from phyzical/feature/add-labels-file-exists-c… #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | |
on: | |
push: | |
branches: | |
- main | |
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: bash pkg_build.sh | |
- name: Commit and push changes | |
uses: stefanzweifel/git-auto-commit-action@8621497c8c39c72f3e2a999a26b4ca1b5058a842 # v5.0.1 | |
with: | |
commit_message: 'Publish plg changes' | |
file_pattern: 'archive/* *.plg' | |
commit_user_name: 'phyzical[bot]' | |
commit_user_email: '[email protected]' |