using gitea vars
Some checks failed
ci / Build & Unit Test (8.0.x) (push) Failing after 43s
ci / Build Frontend (21) (push) Failing after 53s
ci / Build Containers (push) Has been skipped

This commit is contained in:
Andy Pack 2024-07-19 17:24:26 +01:00
parent 219ec1cee0
commit 43ac5cf7ae
Signed by: sarsoo
GPG Key ID: A55BA3536A5E0ED7

View File

@ -15,7 +15,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
github-server-url: https://gitea.sheep-ghoul.ts.net
gitea-server-url: https://gitea.sheep-ghoul.ts.net
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3.0.3
with:
@ -32,12 +32,12 @@ jobs:
runs-on: ubuntu-latest
name: Build Containers
needs: [build, build-Js] # for ignoring bad builds
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))
if: gitea.event_name == 'push' && (gitea.ref == 'refs/heads/master' || startsWith(gitea.ref, 'refs/tags/'))
steps:
- uses: actions/checkout@v3
with:
github-server-url: https://gitea.sheep-ghoul.ts.net
gitea-server-url: https://gitea.sheep-ghoul.ts.net
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
@ -54,7 +54,7 @@ jobs:
push: true
tags: |
sarsoo/selector-cli:latest
sarsoo/selector-cli:${{ github.ref_name }}
sarsoo/selector-cli:${{ gitea.ref_name }}
file: Dockerfile.CLI
- name: Build Web Container
@ -63,7 +63,7 @@ jobs:
push: true
tags: |
sarsoo/selector-web:latest
sarsoo/selector-web:${{ github.ref_name }}
sarsoo/selector-web:${{ gitea.ref_name }}
file: Dockerfile.Web
build-Js:
@ -78,7 +78,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
github-server-url: https://gitea.sheep-ghoul.ts.net
gitea-server-url: https://gitea.sheep-ghoul.ts.net
- name: Install Node ${{ matrix.node }}
uses: actions/setup-node@v2