From c21695a37ed16a7464daaff2dc355b92abe165ce Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Tue, 19 Nov 2024 14:18:50 -0500 Subject: [PATCH] fix: Update to release workflow --- .gitea/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 559ee73..a13c655 100755 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -5,8 +5,8 @@ name: Create and publish a Docker image on: push: #branches: ['release'] - tags: - - '*' +# tags: +# - '*' workflow_dispatch: # Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds. @@ -34,7 +34,7 @@ jobs: with: registry: ${{ env.REGISTRY }} username: ${{ gitea.actor }} - password: ${{ secrets.GITHUB_TOKEN }} + password: ${{ secrets.CONTAINER_TOKEN }} # This step uses [docker/metadata-action](https://github.com/docker/metadata-action#about) to extract tags and labels that will be applied to the specified image. The `id` "meta" allows the output of this step to be referenced in a subsequent step. The `images` value provides the base name for the tags and labels. - name: Extract metadata (tags, labels) for Docker id: meta