File tree Expand file tree Collapse file tree 1 file changed +6
-14
lines changed Expand file tree Collapse file tree 1 file changed +6
-14
lines changed Original file line number Diff line number Diff line change 13
13
# Allows you to run this workflow manually from the Actions tab
14
14
workflow_dispatch :
15
15
16
-
17
- env :
18
- SSH_HOST : ${{ secrets.SSHHOST }}
19
- SSH_KEY : ${{ secrets.SSHKEY }}
20
- FILEBASE_BUCKET : ${{ secrets.FILEBASE_BUCKET }}
21
- FILEBASE_KEY : ${{ secrets.FILEBASE_KEY }}
22
- FILEBASE_SECRET : ${{ secrets.FILEBASE_SECRET }}
23
-
24
16
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
25
17
jobs :
26
18
# This workflow contains a single job called "build"
@@ -65,12 +57,12 @@ jobs:
65
57
ipfs :
66
58
name : Build and Publish IPFS
67
59
uses : ./.github/workflows/ipfs.yml
68
- with :
69
- ssh_host : ${{ env .SSHHOST }}
70
- ssh_key : ${{ env .SSHKEY }}
71
- filebase_bucket : ${{ env .FILEBASE_BUCKET }}
72
- filebase_key : ${{ env .FILEBASE_KEY }}
73
- filebase_secret : ${{ env .FILEBASE_SECRET }}
60
+ secrets :
61
+ SSHHOST : " ${{ secrets .SSHHOST }}"
62
+ SSHKEY : " ${{ secrets .SSHKEY }}"
63
+ FILEBASE_BUCKET : " ${{ secrets .FILEBASE_BUCKET }}"
64
+ FILEBASE_KEY : " ${{ secrets .FILEBASE_KEY }}"
65
+ FILEBASE_SECRET : " ${{ secrets .FILEBASE_SECRET }}"
74
66
needs :
75
67
- start
76
68
You can’t perform that action at this time.
0 commit comments