deploy-workflow: create docker compose file
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s

This commit is contained in:
2026-07-04 01:07:01 +03:00
parent 29d66974cb
commit 95ac23906d
@@ -16,9 +16,9 @@ runs:
steps: steps:
- id: escape - id: escape
shell: bash shell: bash
env:
RAW_MESSAGE: ${{ inputs.message }}
run: | run: |
RAW_MESSAGE="${{ inputs.message }}"
ESCAPED_MESSAGE=$(echo "$RAW_MESSAGE" | sed "s/-/\\\\-/g" | sed "s/\./\\\\./g" | sed "s/!/\\\\!/g") ESCAPED_MESSAGE=$(echo "$RAW_MESSAGE" | sed "s/-/\\\\-/g" | sed "s/\./\\\\./g" | sed "s/!/\\\\!/g")
echo "result<<EOF" >> $GITHUB_OUTPUT echo "result<<EOF" >> $GITHUB_OUTPUT