[ci] Update swarm.yml #51
This file contains 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: push to swarm | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: . | |
strategy: | |
matrix: | |
node-version: [17.x] | |
steps: | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Set environment specific variables | |
uses: jnus/[email protected] | |
with: | |
scope: "swarm" | |
configFile: '.github/workflows/variables.json' | |
secrets: '${{ toJson(secrets.github_token) }}' | |
- name: Cache node modules | |
id: cache-npm | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-node-modules | |
with: | |
# npm cache files are stored in `~/.npm` on Linux/macOS | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }} | |
name: List the state of node modules | |
continue-on-error: true | |
run: npm list | |
- name: install | |
run: npm install | |
- name: copy vars to .env | |
run: | | |
env |grep 'REACT_APP' > .env | |
- name: build | |
run: npm run build:production | |
env: | |
CI: false | |
- name: copy mock-backend to root | |
run: | | |
mv ./build/mock-backend/* ./build/ | |
find * -type f -exec sed -i 's#https://app.dracula.fairdatasociety.org/#'"$REACT_APP_BACKEND_BASE_URL"'#g' {} + | |
- name: Upload | |
id: swarm-upload | |
uses: ethersphere/swarm-actions/upload-dir@latest | |
with: | |
bee-url: ${{ env.SWARM_URL }} | |
dir: ./build | |
index-document: index.html | |
timeout: 20000 | |
- name: update feed | |
id: swarm-feed | |
uses: ethersphere/swarm-actions/write-feed@latest | |
env: | |
SIGNER: SIGNER_${{ github.ref_name }} | |
with: | |
bee-url: ${{ env.SWARM_URL }} | |
reference: ${{ steps.swarm-upload.outputs.reference }} | |
topic: consents | |
signer: ${{ secrets.SIGNER_master }} | |
- name: get CID | |
id: swarm-cid | |
uses: ethersphere/swarm-actions/reference-to-cid@latest | |
with: | |
reference: ${{ steps.swarm-feed.outputs.reference }} | |
- name: print | |
run: | | |
echo "upload ref: " ${{ steps.swarm-upload.outputs.reference }} | |
echo "feed ref: " ${{ steps.swarm-feed.outputs.reference }} | |
echo "CID: " ${{ steps.swarm-cid.outputs.cid }} | |
echo 'Feed Manifest: ${{ steps.swarm-feed.outputs.manifest }}' | |
- name: purge cache | |
env: | |
TOKEN: '${{ secrets.purge_token }}' | |
run: | | |
curl -s ${{ env.PURGE_URL }}/deploy/purge?token=${{ secrets.purge_token }} -H "site: fairdrive${{ env.DEPLOYMENT }}fairdatasociety.org" -H "uri: apps/dracula/" |