feat: use JS for the Juno config (#2) #39
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: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- name: Deploy to Juno | |
uses: junobuild/juno-action@main | |
with: | |
args: deploy | |
env: | |
JUNO_TOKEN: ${{ secrets.JUNO_TOKEN }} |