Skip to content

Commit 2060d02

Browse files
committed
fix
1 parent 1ccfde0 commit 2060d02

File tree

1 file changed

+6
-14
lines changed

1 file changed

+6
-14
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,6 @@ on:
1313
# Allows you to run this workflow manually from the Actions tab
1414
workflow_dispatch:
1515

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-
2416
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
2517
jobs:
2618
# This workflow contains a single job called "build"
@@ -65,12 +57,12 @@ jobs:
6557
ipfs:
6658
name: Build and Publish IPFS
6759
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 }}"
7466
needs:
7567
- start
7668

0 commit comments

Comments
 (0)