Skip to content

[DEV] Build & Redeploy #31

[DEV] Build & Redeploy

[DEV] Build & Redeploy #31

Workflow file for this run

name: "[DEV] Build & Redeploy"
on:
workflow_dispatch:
push:
branches: ['main']
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
name: Build and push the Docker image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: .
file: ./docker/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
redeploy:
name: Redeploy the application in dev
needs: [build-and-push-image]
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
steps:
- name: Trigger dev application restart
# DIESE VERSION NICHT AENDERN, FOR REAL!!!! FRAGT RUBEN VORHER
uses: appleboy/ssh-action@dce9d565de8d876c11d93fa4fe677c0285a66d78
with:
host: ${{ secrets.STAGING_SSH_HOST }}
username: ${{ secrets.STAGING_SSH_USERNAME }}
key: ${{ secrets.STAGING_SSH_KEY }}
# Script ist wayne, weil der Server das ssh command restricted
script: deploy dev