summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerghei Cebotari <serghei@cebotari.ru>2025-01-28 23:37:30 +0300
committerSerghei Cebotari <serghei@cebotari.ru>2025-01-28 23:37:30 +0300
commit455733461139699bf1ca4df8a126bc5b8fbf0ab1 (patch)
tree1e9595bf7bec1539c439b8193f48584e54c6a998
parent3cf486255c358a36694c833e69e8e6389f6a09ef (diff)
Remove gitea workflow
-rw-r--r--.gitea/workflows/release.yaml44
1 files changed, 0 insertions, 44 deletions
diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml
deleted file mode 100644
index db9c05b..0000000
--- a/.gitea/workflows/release.yaml
+++ /dev/null
@@ -1,44 +0,0 @@
-name: Test and release
-
-on:
- push:
- branches:
- - "master"
- paths-ignore:
- - "README"
- workflow_dispatch:
-
-jobs:
- test:
- env:
- RUNNER_TOOL_CACHE: /toolcache
- runs-on: ubuntu-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v3
- - name: Setup .NET 8.0
- uses: actions/setup-dotnet@v3
- with:
- dotnet-version: '8.0'
- - name: Test
- run: dotnet test
- release-image:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v3
- - name: Install Docker
- run: curl -fsSL https://get.docker.com | sh
- - name: Login to Gitea Hub
- uses: docker/login-action@v3
- with:
- registry: gitea.cebotari.ru
- username: chebser
- password: ${{ secrets.DOCKER_TOKEN }}
- - name: Build app
- uses: docker/build-push-action@v5
- with:
- context: .
- file: ./Dockerfile
- push: true
- tags: gitea.cebotari.ru/chebser/rhsolutions-api:latest \ No newline at end of file