Update cd.yml #3
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: Hostr CD | |
on: | |
push: | |
branches: ['develop'] | |
pull_request: | |
branches: ['develop'] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: CD | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.15' | |
- run: curl https://get.volta.sh | bash | |
- run: volta install node@20 | |
- run: npm install --global yarn | |
- run: go install github.com/studiokaiji/nostr-webhost/nostrh@latest | |
- run: yarn install --frozen-lockfile | |
- run: yarn build | |
- run: nostrh generate-key | |
- run: nostrh add-relay wss://r.hostr.cc | |
- run: pwd | |
- run: ls | |
- run: nostrh deploy /dist |