Merge pull request #445 from traPtitech/fix/issue-218 #16
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 Image (staging) | |
on: | |
push: | |
branches: | |
- main | |
env: | |
IMAGE_NAME: knoq | |
jobs: | |
image: | |
name: Build Docker Image | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- 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@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: traptitech | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
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" |