Merge pull request #184 from ethersphere/staging #182
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Swarm Upload | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: '18' | |
| - name: Build | |
| env: | |
| TINA_BRANCH: ${{ secrets.TINA_BRANCH }} | |
| TINA_CLIENT_ID: ${{ secrets.TINA_CLIENT_ID }} | |
| TINA_TOKEN: ${{ secrets.TINA_TOKEN }} | |
| run: | | |
| npm ci | |
| npm run build | |
| - name: Upload to Swarm | |
| uses: ethersphere/swarm-actions/upload-dir@latest | |
| id: upload | |
| with: | |
| dir: ./out | |
| index-document: index.html | |
| postage-batch-id: ${{ secrets.PRIVATE_POSTAGE_BATCH_ID }} | |
| bee-url: ${{ secrets.PRIVATE_BEE_URL }} | |
| timeout: 300000 | |
| deferred: false | |
| - name: Setup feed | |
| uses: ethersphere/swarm-actions/write-feed@latest | |
| id: feed | |
| with: | |
| reference: ${{ steps.upload.outputs.reference }} | |
| topic: "swarm-homepage" | |
| postage-batch-id: ${{ secrets.PRIVATE_POSTAGE_BATCH_ID }} | |
| bee-url: ${{ secrets.PRIVATE_BEE_URL }} | |
| signer: ${{ secrets.PRIVATE_SIGNER }} | |
| - uses: ethersphere/swarm-actions/reference-to-cid@v0 | |
| id: cid | |
| with: | |
| reference: ${{ steps.feed.outputs.manifest }} | |
| - run: | | |
| echo 'Chunk Reference: ${{ steps.upload.outputs.reference }}' | |
| echo 'Feed Reference: ${{ steps.feed.outputs.reference }}' | |
| echo 'Feed Manifest: ${{ steps.feed.outputs.manifest }}' | |
| echo 'Feed Bzz.link: https://${{ steps.cid.outputs.cid }}.bzz.link' |