Skip to content

feat: add docker image and workflow setup (#306) #1

feat: add docker image and workflow setup (#306)

feat: add docker image and workflow setup (#306) #1

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/node-setup
- uses: ./.github/actions/build-app
- name: Create Release Pull Request
uses: changesets/action@v1
with:
commit: "chore(release): version packages"
title: "chore(release): version packages"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}