1
0
mirror of https://github.com/tommytran732/Synapse-Docker synced 2024-09-07 16:23:29 -04:00

Re-add version tag

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy 2024-06-15 19:11:19 -07:00
parent 4e246a7196
commit c756ed72f5
Signed by: Tomster
GPG Key ID: 555C902A34EC968F

View File

@ -29,6 +29,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Extract version for tags
run: |
echo "FULL_VERSION=$(grep -oP '(?<=SYNAPSE_VERSION=).*' Dockerfile)" >> $GITHUB_ENV
echo "MAJOR_VERSION=$(grep -oP '(?<=SYNAPSE_VERSION=).*' Dockerfile | head -c5)" >> $GITHUB_ENV
- name: Install cosign
if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@v3
@ -51,6 +56,8 @@ jobs:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
latest
${{ env.FULL_VERSION }}
${{ env.MAJOR_VERSION }}
- name: Build and push Docker image
id: build-and-push