Update .forgejo/workflows/latest-release.yml

This commit is contained in:
Douglas Parker 2024-02-27 20:09:45 +00:00
parent e71aef0f68
commit 7ad379aee9

View file

@ -1,4 +1,4 @@
name: Release (Alpine Latest)
name: Release
on:
schedule:
@ -32,14 +32,13 @@ jobs:
id: meta
uses: actions/docker-metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.REGISTRY_IMAGE_NAME }}
tags: |
latest
images: ${{ env.REGISTRY }}/${{ env.REGISTRY_IMAGE_NAME }}
- name: Build the Docker image and publish to the Docker Registry
- name: Build and publish Alpine Latest
uses: actions/docker-build-push-action@v5
with:
context: .docker/latest
push: true
tags: ${{ steps.meta.outputs.tags }}
tags: |
${{ env.REGISTRY }}/${{ env.REGISTRY_IMAGE_NAME }}:latest
labels: ${{ steps.meta.outputs.labels }}