Skip to content

chore(deps): bump the npm_and_yarn group across 1 directory with 5 up… #88

chore(deps): bump the npm_and_yarn group across 1 directory with 5 up…

chore(deps): bump the npm_and_yarn group across 1 directory with 5 up… #88

Workflow file for this run

name: Build, Publish & Release
on:
push:
paths-ignore:
- '**.md'
branches:
- master
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
tests:
uses: ./.github/workflows/test-run.yml
build-and-push-image:
needs: [tests]
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
issues: write
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
token: ${{ secrets.RELEASE_TOKEN }}
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: Install Typescript
run: npm install -g typescript
- name: Install dependencies
run: npm install
- name: Log in to the Container registry
uses: docker/login-action@49ed152c8eca782a232dede0303416e8f356c37b # v2.0.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@e551b19e49efd4e98792db7592c17c09b89db8d8 # v3.0.0
with:
context: .
push: false
tags: ${{ env.IMAGE_NAME }}
- name: Create release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}