add build workflow for backend application and Docker image
Some checks are pending
Build Backend Application and Docker Image / build-docker (push) Blocked by required conditions
Some checks are pending
Build Backend Application and Docker Image / build-docker (push) Blocked by required conditions
This commit is contained in:
parent
192b96d658
commit
960c60accc
1 changed files with 35 additions and 0 deletions
35
.gitea/workflows/build.yml
Normal file
35
.gitea/workflows/build.yml
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
name: Build Backend Application and Docker Image
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-docker:
|
||||||
|
needs: build-backend
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
packages: write
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
|
- name: Login to GitHub Container Registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: git.siwatsystem.com
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.RUNNER_TOKEN }}
|
||||||
|
|
||||||
|
- name: Build and push Docker image
|
||||||
|
uses: docker/build-push-action@v4
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
file: ./Dockerfile
|
||||||
|
push: true
|
||||||
|
tags: git.siwatsystem.com/adsist-cms/worker:latest
|
Loading…
Add table
Add a link
Reference in a new issue