Deploy to the IC using GitHub Action with Juno

I know I already shared news about my project two days ago on the forum, but Iā€™m thrilled to announce another exciting feature! :point_right: You can now easily deploy to the Internet Computer using GitHub Actions with Juno :rocket:

Blog post and documentation: https://juno.build/blog/deploy-to-the-internet-computer-using-github-action-with-juno

Example:

name: Deploy to Juno

on:
  release:
    types: [released]

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: Install Dependencies
        run: npm ci

      - name: Build
        run: npm run build

      - name: Deploy to Juno
        uses: buildwithjuno/juno-action@main
        with:
          args: deploy
        env:
          JUNO_TOKEN: ${{ secrets.JUNO_TOKEN }}
5 Likes