Testing actions

This commit is contained in:
Tony Grosinger 2024-01-11 12:27:27 -08:00
parent c7d3f92558
commit 7391a09ee2

View File

@ -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