Skip to content

build: Bump version to 1.3.0 #12

build: Bump version to 1.3.0

build: Bump version to 1.3.0 #12

Workflow file for this run

name: Build
# Only build after new tag.
on:
workflow_dispatch:
push:
tags:
- '*'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node with yarn caching
uses: actions/setup-node@v2
with:
node-version: '18'
cache: yarn
- name: Install dependencies
run: yarn install
- name: Build Astro
run: yarn build
- uses: LucJosin/publish-orphan-branch@main
with:
ARGS: '--dir "dist" --branch "release"'