Skip to content

improved styling and added confirmation for resetting token list (#50) #86

improved styling and added confirmation for resetting token list (#50)

improved styling and added confirmation for resetting token list (#50) #86

Workflow file for this run

on:
push:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
name: Build and Push
steps:
- name: git-checkout
uses: actions/checkout@v3
- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: 8
run_install: true
- name: Build
run: pnpm build
- name: Touch .nojeykll
run: touch ./dist/.nojekyll
- name: Touch CNAME
run: echo "recovery.sequence.app" > ./dist/CNAME
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/master'
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: gh-pages
FOLDER: dist
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MESSAGE: 'Build: ({sha}) {msg}'