Skip to content

Commit

Permalink
Merge pull request #255 from i5okie/feat/workflow
Browse files Browse the repository at this point in the history
Add GitHub Actions workflow
  • Loading branch information
esune authored Jan 13, 2025
2 parents 8aed307 + 8e56c67 commit 96298a0
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/build_release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Build Release

on:
release:
types: [published]
workflow_dispatch:

permissions:
packages: write
contents: write

jobs:
build_frontend:
name: 'Build Orgbook BC Client'
runs-on: ubuntu-latest
if: github.repository_owner == 'bcgov'
steps:
- uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Prepare docker tags for image
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}/orgbook-bc-client
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=ref
type=sha
- name: Build and push image
id: builder
uses: docker/build-push-action@v6
with:
context: ./
file: ./docker/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 96298a0

Please sign in to comment.