Skip to content

Commit 20f87ad

Browse files
committed
Fix workflow syntax errors
1 parent 8a7ca18 commit 20f87ad

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

.github/workflows/action-schedule_master.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ jobs:
3535
with:
3636
enabled: true
3737
can_deploy: true
38-
is_scheduled: true
3938
versions: ${{ needs.params.outputs.versions }}
4039
refs: ${{ needs.params.outputs.refs }}
4140
secrets:

.github/workflows/action-schedule_tags.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ jobs:
3535
with:
3636
enabled: true
3737
can_deploy: true
38-
is_scheduled: true
3938
versions: ${{ needs.params.outputs.versions }}
4039
refs: ${{ needs.params.outputs.refs }}
4140
secrets:

.github/workflows/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ jobs:
3535
with:
3636
enabled: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && (github.event.pull_request.user.login != 'cytopia')) }}
3737
can_deploy: ${{ (github.repository == 'devilbox/docker-php-fpm') && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') || startsWith(github.ref, 'refs/heads/release-')) }}
38-
is_scheduled: false
3938
versions: ${{ needs.params.outputs.versions }}
4039
refs: ${{ needs.params.outputs.refs }}
4140
secrets:

.github/workflows/params-nightly_master.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,11 @@ jobs:
6161
- name: "[Set-Output] jsonify VERSIONS"
6262
id: set-versions
6363
run: |
64-
echo "::set-output name=versions::$( echo '${{ env.VERSIONS }}' | jq -M -c )"
64+
VERSIONS="$( echo '${{ env.VERSIONS }}' | jq -M -c )"
65+
echo "versions=${VERSIONS}" >> $GITHUB_OUTPUT
6566
6667
- name: "[Set-Output] jsonify REFS"
6768
id: set-refs
6869
run: |
69-
echo "::set-output name=refs::$( echo '${{ env.REFS }}' | jq -M -c )"
70+
REFS="$( echo '${{ env.REFS }}' | jq -M -c )"
71+
echo "refs=${REFS}" >> $GITHUB_OUTPUT

.github/workflows/params-nightly_tags.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,11 @@ jobs:
6161
- name: "[Set-Output] jsonify VERSIONS"
6262
id: set-versions
6363
run: |
64-
echo "::set-output name=versions::$( echo '${{ env.VERSIONS }}' | jq -M -c )"
64+
VERSIONS="$( echo '${{ env.VERSIONS }}' | jq -M -c )"
65+
echo "versions=${VERSIONS}" >> $GITHUB_OUTPUT
6566
6667
- name: "[Set-Output] jsonify REFS"
6768
id: set-refs
6869
run: |
69-
echo "::set-output name=refs::$( echo '${{ env.REFS }}' | jq -M -c )"
70+
REFS="$( echo '${{ env.REFS }}' | jq -M -c )"
71+
echo "refs=${REFS}" >> $GITHUB_OUTPUT

.github/workflows/params.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,11 @@ jobs:
6161
- name: "[Set-Output] jsonify VERSIONS"
6262
id: set-versions
6363
run: |
64-
echo "::set-output name=versions::$( echo '${{ env.VERSIONS }}' | jq -M -c )"
64+
VERSIONS="$( echo '${{ env.VERSIONS }}' | jq -M -c )"
65+
echo "versions=${VERSIONS}" >> $GITHUB_OUTPUT
6566
6667
- name: "[Set-Output] jsonify REFS"
6768
id: set-refs
6869
run: |
69-
echo "::set-output name=refs::$( echo '${{ env.REFS }}' | jq -M -c )"
70+
REFS="$( echo '${{ env.REFS }}' | jq -M -c )"
71+
echo "refs=${REFS}" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)