File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -52,15 +52,12 @@ jobs:
52
52
uses : actions/checkout@v4
53
53
54
54
- name : Sanitize Branch Name
55
- id : sanitize
56
55
run : |
57
56
CLEAN_BRANCH_NAME="${GITHUB_REF_NAME//\//_}"
58
57
echo "CLEAN_BRANCH_NAME=${CLEAN_BRANCH_NAME}" >> $GITHUB_ENV
59
- outputs :
60
- CLEAN_BRANCH_NAME : ${{ steps.sanitize.outputs.CLEAN_BRANCH_NAME }}
61
58
62
59
- name : Compress Artifacts
63
- run : zip -r ${{ steps.sanitize.outputs .CLEAN_BRANCH_NAME }}.zip .
60
+ run : zip -r ${{ enc .CLEAN_BRANCH_NAME }}.zip .
64
61
65
62
- name : Deploy to Remote
66
63
env :
70
67
SSH_USER : ${{ secrets.SSH_USER }}
71
68
SSH_KEY : ${{ secrets.SSH_KEY }} # SSH private key stored as a GitHub secret
72
69
SSH_WEB_PATH : ${{ secrets.SSH_WEB_PATH }}
73
- CLEAN_BRANCH_NAME : ${{ steps.sanitize.outputs.CLEAN_BRANCH_NAME }}
74
70
run : |
75
71
#!/usr/bin/env bash
76
72
set -ex -o pipefail
You can’t perform that action at this time.
0 commit comments