Version Packages (#2098) #612
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- main | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
env: | |
REGISTRY: ghcr.io | |
IMAGE: ghcr.io/team3132/attendancesystem | |
permissions: | |
packages: write | |
id-token: write | |
contents: write | |
pull-requests: write | |
jobs: | |
check: | |
uses: ./.github/workflows/job-check.yml | |
release: | |
name: Release Changeset | |
runs-on: ubuntu-latest | |
needs: check | |
outputs: | |
published: ${{ steps.changesets.outputs.published }} | |
publishedPackages: ${{ steps.changesets.outputs.publishedPackages }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 9 | |
- name: Setup Node.js 21 | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
cache: 'pnpm' | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Create Release Pull Request | |
id: changesets | |
uses: changesets/action@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
# this npm script triggers `changeset publish` | |
publish: pnpm changeset tag | |
createGithubReleases: true | |
publish-docker: | |
name: Publish Docker Images | |
runs-on: ubuntu-latest | |
needs: release | |
if: needs.release.outputs.published == 'true' | |
strategy: | |
fail-fast: true | |
matrix: | |
package: ${{ fromJson(needs.release.outputs.publishedPackages) }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.IMAGE }}-${{ matrix.package.name }} | |
tags: | | |
# use custom value instead of git tag | |
type=semver,pattern={{version}},value=${{ matrix.package.version }} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Docker Login | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and Push | |
uses: docker/build-push-action@v6 | |
with: | |
build-args: | | |
VERSION=${{ matrix.package.version }} | |
tags: ${{ steps.meta.outputs.tags }} | |
push: true | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=registry,ref=ghcr.io/team3132/attendancesystem-${{ matrix.package.name }}:latest | |
target: ${{ matrix.package.name }}-runner |