Skip to content

refactor: replace Docker publish workflow with CI/CD pipeline and add… #1

refactor: replace Docker publish workflow with CI/CD pipeline and add…

refactor: replace Docker publish workflow with CI/CD pipeline and add… #1

Workflow file for this run

name: CI/CD
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
outputs:
new-release-published: ${{ steps.release.outputs.new-release-published }}
new-release-version: ${{ steps.release.outputs.new-release-version }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
id: release
run: npx semantic-release
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
needs: release
if: needs.release.outputs.new-release-published == 'true'
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: |
ghcr.io/${{ github.repository }}:latest
ghcr.io/${{ github.repository }}:${{ needs.release.outputs.new-release-version }}
build-args: |
VERSION=${{ needs.release.outputs.new-release-version }}
cache-from: type=gha
cache-to: type=gha,mode=max