Skip to content

feat: added ability to group services together #16

feat: added ability to group services together

feat: added ability to group services together #16

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
package:
runs-on: ubuntu-latest
permissions:
packages: write
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.SEMVER_GH_TOKEN }}
- name: Login to ghcr.io
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push image
uses: docker/build-push-action@v5
with:
push: true
tags: |
ghcr.io/henrywhitaker3/prompage:latest
ghcr.io/henrywhitaker3/prompage:${{ github.ref_name }}
build-args: |
VERSION=${{ github.ref_name }}