diff --git a/.github/workflows/action-schedule_master.yml b/.github/workflows/action-schedule_master.yml index 63c9259..c7714b9 100644 --- a/.github/workflows/action-schedule_master.yml +++ b/.github/workflows/action-schedule_master.yml @@ -35,7 +35,6 @@ jobs: with: enabled: true can_deploy: true - is_scheduled: true versions: ${{ needs.params.outputs.versions }} refs: ${{ needs.params.outputs.refs }} secrets: diff --git a/.github/workflows/action-schedule_tags.yml b/.github/workflows/action-schedule_tags.yml index fa467ec..d4ee2ae 100644 --- a/.github/workflows/action-schedule_tags.yml +++ b/.github/workflows/action-schedule_tags.yml @@ -35,7 +35,6 @@ jobs: with: enabled: true can_deploy: true - is_scheduled: true versions: ${{ needs.params.outputs.versions }} refs: ${{ needs.params.outputs.refs }} secrets: diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 2fef357..58a9d4d 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -35,7 +35,6 @@ jobs: with: enabled: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && (github.event.pull_request.user.login != 'cytopia')) }} can_deploy: ${{ (github.repository == 'devilbox/docker-php-fpm') && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') || startsWith(github.ref, 'refs/heads/release-')) }} - is_scheduled: false versions: ${{ needs.params.outputs.versions }} refs: ${{ needs.params.outputs.refs }} secrets: diff --git a/.github/workflows/params-nightly_master.yml b/.github/workflows/params-nightly_master.yml index 1bc3cfa..18f4d9a 100644 --- a/.github/workflows/params-nightly_master.yml +++ b/.github/workflows/params-nightly_master.yml @@ -61,9 +61,11 @@ jobs: - name: "[Set-Output] jsonify VERSIONS" id: set-versions run: | - echo "::set-output name=versions::$( echo '${{ env.VERSIONS }}' | jq -M -c )" + VERSIONS="$( echo '${{ env.VERSIONS }}' | jq -M -c )" + echo "versions=${VERSIONS}" >> $GITHUB_OUTPUT - name: "[Set-Output] jsonify REFS" id: set-refs run: | - echo "::set-output name=refs::$( echo '${{ env.REFS }}' | jq -M -c )" + REFS="$( echo '${{ env.REFS }}' | jq -M -c )" + echo "refs=${REFS}" >> $GITHUB_OUTPUT diff --git a/.github/workflows/params-nightly_tags.yml b/.github/workflows/params-nightly_tags.yml index 6b4afcd..5739029 100644 --- a/.github/workflows/params-nightly_tags.yml +++ b/.github/workflows/params-nightly_tags.yml @@ -61,9 +61,11 @@ jobs: - name: "[Set-Output] jsonify VERSIONS" id: set-versions run: | - echo "::set-output name=versions::$( echo '${{ env.VERSIONS }}' | jq -M -c )" + VERSIONS="$( echo '${{ env.VERSIONS }}' | jq -M -c )" + echo "versions=${VERSIONS}" >> $GITHUB_OUTPUT - name: "[Set-Output] jsonify REFS" id: set-refs run: | - echo "::set-output name=refs::$( echo '${{ env.REFS }}' | jq -M -c )" + REFS="$( echo '${{ env.REFS }}' | jq -M -c )" + echo "refs=${REFS}" >> $GITHUB_OUTPUT diff --git a/.github/workflows/params.yml b/.github/workflows/params.yml index 39113b7..be6a9ac 100644 --- a/.github/workflows/params.yml +++ b/.github/workflows/params.yml @@ -61,9 +61,11 @@ jobs: - name: "[Set-Output] jsonify VERSIONS" id: set-versions run: | - echo "::set-output name=versions::$( echo '${{ env.VERSIONS }}' | jq -M -c )" + VERSIONS="$( echo '${{ env.VERSIONS }}' | jq -M -c )" + echo "versions=${VERSIONS}" >> $GITHUB_OUTPUT - name: "[Set-Output] jsonify REFS" id: set-refs run: | - echo "::set-output name=refs::$( echo '${{ env.REFS }}' | jq -M -c )" + REFS="$( echo '${{ env.REFS }}' | jq -M -c )" + echo "refs=${REFS}" >> $GITHUB_OUTPUT