Overflow/.gitea/workflows/ci.yml
Andy Pack 8fb71e361a
Some checks failed
ci / Build & Unit Test (8.0.x) (push) Successful in 2m50s
ci / Publish Charts (push) Successful in 44s
ci / Build Containers (push) Has been cancelled
fixing ref
2024-10-01 19:41:54 +01:00

80 lines
2.4 KiB
YAML

name: ci
on: [push]
jobs:
build:
runs-on: ubuntu-latest
name: Build & Unit Test
strategy:
fail-fast: false
matrix:
dotnet-version: [ '8.0.x' ]
steps:
- uses: actions/checkout@v4
with:
github-server-url: https://gitea.sheep-ghoul.ts.net
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3.0.3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install WASM Workload
run: dotnet workload install wasm-tools
- name: Install Dependencies
run: dotnet restore Overflow.sln
- name: Build
run: dotnet build --configuration Debug --no-restore Overflow.sln
- name: Test
run: dotnet test --no-restore --verbosity normal Overflow.sln
build-Docker:
runs-on: ubuntu-latest
name: Build Containers
needs: [build] # for ignoring bad builds
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))
steps:
- uses: actions/checkout@v4
with:
github-server-url: https://gitea.sheep-ghoul.ts.net
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
registry: gitea.sheep-ghoul.ts.net
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build Web Container
uses: docker/build-push-action@v5
with:
push: true
tags: gitea.sheep-ghoul.ts.net/sarsoo/overflow:latest
file: Dockerfile
context: .
publish:
runs-on: ubuntu-latest
name: Publish Charts
needs: [build] # for ignoring bad builds
if: gitea.event_name == 'push' && (gitea.ref == 'refs/heads/master' || startsWith(gitea.ref, 'refs/tags/'))
steps:
- uses: actions/checkout@v4
with:
github-server-url: https://gitea.sheep-ghoul.ts.net
- uses: azure/setup-helm@v4.2.0
- name: Package Chart
run: helm package -u charts/overflow
- name: Push Chart
run: curl --user ${{ secrets.DOCKERHUB_USERNAME }}:${{ secrets.DOCKERHUB_TOKEN }} -X POST --upload-file ./overflow-*.tgz https://gitea.sheep-ghoul.ts.net/api/packages/${{ secrets.DOCKERHUB_USERNAME }}/helm/api/charts