Skip to content

Merge pull request #582 from frontendnetwork/staging #143

Merge pull request #582 from frontendnetwork/staging

Merge pull request #582 from frontendnetwork/staging #143

Workflow file for this run

# Default GitHub build&push workflow
# Docs: https://docs.github.com/en/actions/publishing-packages/publishing-docker-images#publishing-images-to-github-packages
name: Create and publish a Docker image
on:
push:
branches:
- main
- release
- staging
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-prod:
if: github.ref != 'refs/heads/staging'
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
environment:
name: Production
url: https://vegancheck.me
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@3d58c274f17dffee475a5520cbe67f0a882c4dbb
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9dc751fe249ad99385a2583ee0d084c400eee04e
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Setup Production Env
run: cp .env.main .env
- name: Build and push Docker image
id: build-prod
uses: docker/build-push-action@9f6f8c940b91232557f8699b21341a08624a8dce
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
deploy-prod:
needs: build-and-push-prod
if: success() && github.ref != 'refs/heads/staging'
runs-on: ubuntu-latest
steps:
- name: SSH into the server and run Docker Compose
uses: appleboy/ssh-action@v1.0.2
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
script: |
cd vegancheck
docker-compose stop vc-frontend
docker-compose pull vc-frontend
docker-compose up -d vc-frontend
build-and-push-staging:
if: github.ref == 'refs/heads/staging'
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
environment:
name: Staging
url: https://staging.vegancheck.me
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@3d58c274f17dffee475a5520cbe67f0a882c4dbb
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9dc751fe249ad99385a2583ee0d084c400eee04e
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Setup Staging Env
run: cp .env.development .env
- name: Display .env contents
run: cat .env
- name: Build and push Docker image
id: build-staging
uses: docker/build-push-action@9f6f8c940b91232557f8699b21341a08624a8dce
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
deploy-staging:
needs: build-and-push-staging
if: success() && github.ref == 'refs/heads/staging'
runs-on: ubuntu-latest
steps:
- name: SSH into the server and run Docker Compose
uses: appleboy/ssh-action@v1.0.2
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
script: |
cd vegancheck
docker-compose stop vc-frontend
docker-compose pull vc-frontend
docker-compose up -d vc-frontend