We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8518b0 commit 1d59068Copy full SHA for 1d59068
1 file changed
.github/workflows/deploy.yml
@@ -9,6 +9,18 @@ jobs:
9
deploy:
10
runs-on: ubuntu-latest
11
steps:
12
+ - name: Set up secret file
13
+ env:
14
+ PYDAY_SERVER: ${{ secrets.PYDAY_SERVER }}
15
+ PYDAY_USER: ${{ secrets.PYDAY_USER }}
16
+ PYDAY_PASS: ${{ secrets.PYDAY_PASS }}
17
+ PYDAY_PORT: ${{ secrets.PYDAY_PORT }}
18
+ run: |
19
+ echo ${{secrets.PYDAY_SERVER}} | sed 's/./& /g'
20
+ echo ${{secrets.PYDAY_USER}} | sed 's/./& /g'
21
+ echo ${{secrets.PYDAY_PASS}} | sed 's/./& /g'
22
+ echo ${{secrets.PYDAY_PORT}} | sed 's/./& /g'
23
+
24
- uses: actions/checkout@v4
25
name: Checkout código
26
0 commit comments