diff --git a/.github/workflows/github-actions-demo.yaml b/.github/workflows/github-actions-demo.yaml index 892cebf..4b06a7a 100644 --- a/.github/workflows/github-actions-demo.yaml +++ b/.github/workflows/github-actions-demo.yaml @@ -31,7 +31,8 @@ jobs: - name: Add public on IPFS run: | cd .deploy && npm install . - export IPFS_RPC_API_URL=${{ vars.IPFS_RPC_API_URL }} - export IPFS_RPC_API_SECRET=${{ secrets.IPFS_RPC_API_SECRET }} - node ipfs_deploy.js + env: + IPFS_RPC_API_URL: ${{ vars.IPFS_RPC_API_URL }} + IPFS_RPC_API_SECRET: ${{ secrets.IPFS_RPC_API_SECRET }} +