From 7391a09ee20f58652621e924fde23a14ebdfd60f Mon Sep 17 00:00:00 2001 From: Tony Grosinger Date: Thu, 11 Jan 2024 12:27:27 -0800 Subject: [PATCH] Testing actions --- .gitea/workflows/container-build.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/container-build.yaml diff --git a/.gitea/workflows/container-build.yaml b/.gitea/workflows/container-build.yaml new file mode 100644 index 0000000..668574e --- /dev/null +++ b/.gitea/workflows/container-build.yaml @@ -0,0 +1,18 @@ +name: Build Production Container +run-name: $Env:GITHUB_REF_TYPE Production Build +on: + push: + tags: + - *.*.* + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - name: Deploy + run: | + echo "${{ secrets.CONTAINER_REGISTRY_ACCESS_TOKEN }}" | docker login git.grosinger.net --password-stdin + docker build -t git.grosinger.net/west-sound-hall:$Env:GITHUB_REF_TYPE . + docker push git.grosinger.net/west-sound-hall:$Env:GITHUB_REF_TYPE