Skip to content

what the hell is going on #2

what the hell is going on

what the hell is going on #2

name: "Build and Deploy to Stage"
on:
push:
branches:
- v3
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
publish:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Determine latest version
run: echo "APP_VERSION=$(git describe --tags || git rev-parse --short HEAD)" >> $GITHUB_ENV
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build docker image and push
uses: docker/build-push-action@v4
with:
context: ./
file: ./Dockerfile
build-args: APP_VERSION=${{ env.APP_VERSION }}
push: true
tags: ghcr.io/sv443-network/jokeapi-stage:latest
- name: Delete old packages
uses: actions/delete-package-versions@v4
with:
package-name: ${{ github.event.repository.name }}
package-type: "container"
min-versions-to-keep: 3
delete-only-untagged-versions: "true"
- name: Deploy to stage
run: echo "TODO Trigger stage deployment here"