Skip to content

refactor(Docker): Move Dockerfile and update order of operations. #33

refactor(Docker): Move Dockerfile and update order of operations.

refactor(Docker): Move Dockerfile and update order of operations. #33

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
# Semantic release
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: npm
node-version: 19
- run: npm install
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}