Skip to content

Commit 72b89e1

Browse files
authored
Merge pull request #783 from asherber/fix-second-push
Don't run workflow on an autopublish
2 parents 1101907 + 57f7516 commit 72b89e1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/deploy.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
jobs:
1212
deploy:
1313
runs-on: ubuntu-latest
14+
if: ${{ ! contains(github.event.head_commit.message, 'autopublish') }}
1415
steps:
1516
- name: Checkout this repository
1617
uses: actions/checkout@v4
@@ -53,10 +54,10 @@ jobs:
5354
cd ../../
5455
5556
- name: Install Lua
56-
uses: leafo/gh-actions-lua@v10
57+
uses: leafo/gh-actions-lua@v11
5758

5859
- name: Install LuaRocks
59-
uses: leafo/gh-actions-luarocks@v4
60+
uses: leafo/gh-actions-luarocks@v5
6061

6162
- name: Install lunajson
6263
run: luarocks install lunajson

0 commit comments

Comments
 (0)