Skip to content

Commit

Permalink
🚀 (strapi): add base image for strapi
Browse files Browse the repository at this point in the history
  • Loading branch information
jhasselberg committed Oct 3, 2024
1 parent 82fae0c commit 36cc88a
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/release-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: release-ci

concurrency:
group: prod
cancel-in-progress: false

on:
push:
tags:
- v*

jobs:

get_version:
runs-on: self-hosted
outputs:
version: ${{ steps.get_version.outputs.version }}
steps:
- name: Get version
id: get_version
run: echo version=${GITHUB_REF#refs/tags/} >> $GITHUB_OUTPUT

strapi:
needs:
- get_version
secrets: inherit
uses: ./.github/workflows/sub-publish-image.yml
with:
tag: ${{ needs.get_version.outputs.version }}
app: strapi
file: strapi/Dockerfile
context: strapi

0 comments on commit 36cc88a

Please sign in to comment.