docs: detail and review configuration with all the options (#226) #473
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: Deploy to Juno | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Prepare | |
uses: ./.github/actions/prepare | |
- name: Build | |
run: npm run build | |
- name: Deploy to Juno | |
uses: junobuild/juno-action@main | |
with: | |
args: deploy | |
env: | |
JUNO_TOKEN: ${{ secrets.JUNO_TOKEN }} |