From 3455063538d7dd1fa2a7622ec9ee7caa6a61de8d Mon Sep 17 00:00:00 2001 From: James Brumond Date: Fri, 18 Aug 2023 17:34:36 -0700 Subject: [PATCH] actually publish --- .gitea/workflows/build-and-pubilsh.yaml | 10 ++++++++-- .gitea/workflows/build.yaml | 7 ++++--- readme.md | 2 +- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/build-and-pubilsh.yaml b/.gitea/workflows/build-and-pubilsh.yaml index 92da0f2..125b544 100644 --- a/.gitea/workflows/build-and-pubilsh.yaml +++ b/.gitea/workflows/build-and-pubilsh.yaml @@ -2,7 +2,10 @@ name: Build and publish container images on: -- workflow_dispatch + push: + branches: + - master +# - workflow_dispatch jobs: build-and-publish: @@ -35,7 +38,10 @@ jobs: context: . push: true tags: | - gitea.jbrumond.me/minimal/dashboard:latest + gitea.jbrumond.me/doc-utils/utils:latest + gitea.jbrumond.me/doc-utils/utils:0.2.0 + gitea.jbrumond.me/doc-utils/utils:0.2 + gitea.jbrumond.me/doc-utils/utils:0 platforms: | linux/amd64 linux/arm64 diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index edf1ae8..399c3e5 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -2,9 +2,10 @@ name: Build container images on: - push: - branches: - - master +- workflow_dispatch + # push: + # branches: + # - master jobs: build: diff --git a/readme.md b/readme.md index 2d4bcc9..ae470ba 100644 --- a/readme.md +++ b/readme.md @@ -15,7 +15,7 @@ jobs: build: runs-on: ubuntu-latest container: - image: gitea.jbrumond.me/doc-utils/utils:0.1.1 + image: gitea.jbrumond.me/doc-utils/utils:0.2 steps: - name: Check out the repo uses: actions/checkout@v3