Skip to content

v1.3.1

v1.3.1 #3

Workflow file for this run

name: Release
on:
release:
types: [published]
jobs:
prod:
name: Deploy production
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci --ignore-scripts
- run: npm run deploy:prod -- -r https://git:${DEPLOYMENT_PAT}@github.com/thetolproject/thetolproject.github.io.git -u "${GITHUB_ACTOR} <${GITHUB_ACTOR}@users.noreply.github.com>"
env:
DEPLOYMENT_PAT: ${{ secrets.DEPLOYMENT_PAT }}
tags:
name: Update tags
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: EndBug/latest-tag@v1
with:
ref: stable