mirror of
https://fast.feibisi.com/https://github.com/parcelvoy/platform.git
synced 2025-08-28 11:46:02 +08:00
* Start creating action release flow * Updates build workflow * Removes one step * Another try * Tweaks to build paths * Fixes docker ignore * Tweaks to database migration * Removes useless entrypoint * Fixes to database files * More tweaks to build * Tweaks to base URL * Allows for config file to override env * Tweak to order * Next try * Fixes comma error * Another try * Adds a health endpoint * Try Nginx proxy pass * Re-adds environment path * Remove auto build on branch * Linter fixes
35 lines
741 B
YAML
35 lines
741 B
YAML
name: Create & Publish Docker Image
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*.*.*"
|
|
|
|
env:
|
|
REGISTRY: ghcr.io
|
|
IMAGE_NAME: ${{ github.repository }}
|
|
|
|
jobs:
|
|
build-and-push-image:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Log In to the Container Registry
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build the Docker Image
|
|
run: |
|
|
npm run docker:build:push
|