Skip to content

fix(deps): bump @fastify/jwt from 9.0.2 to 9.0.3 (#90) #223

fix(deps): bump @fastify/jwt from 9.0.2 to 9.0.3 (#90)

fix(deps): bump @fastify/jwt from 9.0.2 to 9.0.3 (#90) #223

Workflow file for this run

name: Release
on:
push:
branches: [ main, develop ]
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
- uses: pnpm/action-setup@v4
with:
version: 9
- name: Install dependencies
run: pnpm install
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
DOCKER_REGISTRY_USER: ${{ github.actor }}
DOCKER_REGISTRY_PASSWORD: ${{ secrets.GH_TOKEN }}
if: github.ref == 'refs/heads/main'
run: npx semantic-release
- name: Release Dry
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
DOCKER_REGISTRY_USER: ${{ github.actor }}
DOCKER_REGISTRY_PASSWORD: ${{ secrets.GH_TOKEN }}
if: github.ref == 'refs/heads/develop'
run: npx semantic-release --dry-run --branches develop