Skip to content

correct icon for gauss turret #20

correct icon for gauss turret

correct icon for gauss turret #20

Workflow file for this run

name: publish
on:
push:
branches: [publish]
env:
VITE_COMMIT_SHA: ${{github.sha}}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build
- name: Copy index to list
run: cp dist/index.html dist/list.html
- name: Copy index to flow
run: cp dist/index.html dist/flow.html
- name: Copy index to 404
run: cp dist/index.html dist/404.html
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@3.4.8
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
REPOSITORY_NAME: batchmode/batchmode.github.io
BRANCH: main
FOLDER: dist
TARGET_FOLDER: dsp-production-overview
CLEAN: true