Skip to content

fix: Image path

fix: Image path #8

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
- name: Setup Node with yarn caching
uses: actions/setup-node@v2
with:
node-version: '16'
cache: yarn
- name: Install dependencies
run: yarn install
- name: Build Astro
run: yarn build
- run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- uses: kiprasmel/git-publish-generated-branch@v0
with:
ARGS: '--dir "dist" --branch "release"'