Skip to content

Commit

Permalink
Merge branch 'main' into refactor/separate-backend
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexRoehm authored Aug 11, 2024
2 parents d7633cb + ac917d7 commit 7187844
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 2 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/branch-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: Create Image for Refactoring Branch

on: workflow_dispatch

jobs:
build:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v4
with:
ref: refactor/separate-backend
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn build

deploy:
needs: build
if: "!contains(github.event.head_commit.message, 'skip cd')"
runs-on: ubuntu-latest

steps:
- name: Check out
uses: actions/checkout@v4
with:
ref: refactor/separate-backend
- name: Docker meta
id: docker_meta
uses: crazy-max/ghaction-docker-meta@v4
with:
images: ghcr.io/ccfreiburg/podkashde
tags: |
type=sha
type=raw,latest-branch
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

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

- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GHCR_PASSWORD }}

- name: Build image
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
build-args: |
BUILDTIME=${{ fromJSON(steps.docker_meta.outputs.json).labels['org.opencontainers.image.created'] }}
VERSION=${{ fromJSON(steps.docker_meta.outputs.json).labels['org.opencontainers.image.version'] }}
REVISION=${{ fromJSON(steps.docker_meta.outputs.json).labels['org.opencontainers.image.revision'] }}
6 changes: 4 additions & 2 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ on:
pull_request:
branches: [ "main" ]

workflow_dispatch:

jobs:
test:
if: "!contains(github.event.head_commit.message, 'skip ci')"
Expand All @@ -32,7 +34,7 @@ jobs:
- run: yarn test

deploy:
needs: test
# needs: test
if: "!contains(github.event.head_commit.message, 'skip cd')"
runs-on: ubuntu-latest

Expand Down Expand Up @@ -76,4 +78,4 @@ jobs:
build-args: |
BUILDTIME=${{ fromJSON(steps.docker_meta.outputs.json).labels['org.opencontainers.image.created'] }}
VERSION=${{ fromJSON(steps.docker_meta.outputs.json).labels['org.opencontainers.image.version'] }}
REVISION=${{ fromJSON(steps.docker_meta.outputs.json).labels['org.opencontainers.image.revision'] }}
REVISION=${{ fromJSON(steps.docker_meta.outputs.json).labels['org.opencontainers.image.revision'] }}

0 comments on commit 7187844

Please sign in to comment.