Innovenergy_trunk/.gitea/workflows/prod-deploy.yaml

27 lines
1.1 KiB
YAML
Raw Normal View History

2023-10-23 12:16:27 +00:00
name: Production-Deploy
on:
push:
tags:
- v1.**
jobs:
Build-and-deploy-Production:
runs-on: ubuntu-latest
steps:
- run: echo " The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo " The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
2023-10-23 12:27:23 +00:00
uses: actions/checkout@v3
2023-10-23 12:16:27 +00:00
- run: echo " The ${{ gitea.repository }} repository has been cloned to the runner."
2023-10-23 13:32:53 +00:00
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- run: dotnet publish ${{ gitea.workspace }}/csharp/App/Backend/Backend.csproj -c Release -r linux-x64 --self-contained true -p:PublishTrimmed=false
- uses: actions/setup-node@v3
2023-10-23 12:28:13 +00:00
- run: |
2023-10-23 13:32:53 +00:00
npm --prefix ${{ gitea.workspace }}/typescript/frontend-marios2 install
npm --prefix ${{ gitea.workspace }}/typescript/frontend-marios2 run build
- name: copy everything to Prod
2023-10-23 12:16:27 +00:00
run: |
2023-10-23 13:32:53 +00:00
${{ gitea.workspace }}/.gitea/Prod-deploy.sh
2023-10-23 12:16:27 +00:00
- run: echo " This job's status is ${{ job.status }}."