west-sound-hall/.gitea/workflows/container-build.yaml
Workflow config file is invalid. Please check your config file: yaml: line 6: did not find expected alphabetic or numeric character
2024-01-11 12:30:52 -08:00

19 lines
571 B
YAML

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