Skip to content

Merge pull request #564 from traPtitech/fix/issue504 #66

Merge pull request #564 from traPtitech/fix/issue504

Merge pull request #564 from traPtitech/fix/issue504 #66

Workflow file for this run

name: Release Image (staging)
on:
push:
branches:
- main
env:
IMAGE_NAME: knoq
jobs:
image:
name: Build Docker Image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set KNOQ_VERSION env
run: echo "KNOQ_VERSION=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV
- name: Set KNOQ_REVISION env
run: echo "KNOQ_REVISION=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
registry: ghcr.io
username: traptitech
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
build-args: |
KNOQ_VERSION=${{ env.KNOQ_VERSION }}
KNOQ_REVISION=${{ env.KNOQ_REVISION }}
tags: |
ghcr.io/traptitech/${{ env.IMAGE_NAME }}:main
deploy-staging:
name: Deploy staging
runs-on: ubuntu-latest
needs: [image]
steps:
- name: Install SSH key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.STAGING_SSH_KEY }}
known_hosts: ${{ secrets.STAGING_KNOWN_HOSTS }}
- name: Deploy
run: ssh -t ${{ secrets.STAGING_DEPLOY_USER }}@${{ secrets.STAGING_DEPLOY_HOST }} "sudo sh /srv/knoq/deploy.sh server"