We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b376361 commit c421615Copy full SHA for c421615
1 file changed
.github/workflows/sync-waline.yml
@@ -117,10 +117,12 @@ jobs:
117
git add .
118
git commit -m "Sync with official Waline repository (v${{ steps.compare-versions.outputs.official-version }})"
119
git push
120
+ shell: bash
121
122
- name: Trigger Docker build workflow
123
if: steps.compare-versions.outputs.needs-sync == 'true'
- run: |
124
- gh workflow run "Build Waline image" --ref ${{ github.ref_name }}
+ working-directory: ${{ github.workspace }}
125
+ run: gh workflow run "Build Waline image" --ref ${{ github.ref_name }}
126
env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
127
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
128
0 commit comments