Created
April 12, 2021 18:36
-
-
Save novaknole/c2cb9e7134e2a17ad86ecffe2a735b43 to your computer and use it in GitHub Desktop.
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
jobs: | |
deploy-govern-console: | |
runs-on: ubuntu-latest | |
container: fleek/create-react-app:node-15 | |
name: deploys to rinkeby/mainnet depending on the branch | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies and build the project | |
run: yarn && yarn build | |
working-directory: packages/govern-core | |
- name: Deploy test site | |
id: deploy | |
uses: fleekhq/action-deploy@v1 | |
with: | |
apiKey: ${{ secrets.FLEEK_API_KEY }} | |
working-directory: packages/govern-core |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment