Compare commits

1 Commits

Author SHA1 Message Date
75ba955426 test 2024-09-08 21:56:26 +02:00

View File

@@ -10,18 +10,30 @@ on:
jobs: jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
name: "Generation data pour merge sur master"
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Setup dotnet - name: Get build container
uses: actions/setup-dotnet@v3 id: adocbuild
with: uses: tonynv/asciidoctor-action@master
dotnet-version: '8.0.x' with:
- name: Install dependencies program: "asciidoctor -D docs --backend=html5 -o index.html documentation/readme.adoc"
run: dotnet restore ./src/LittleTown.sln - name: Print execution time
- name: Build run: echo "Time ${{ steps.adocbuild.outputs.time }}"
run: dotnet build ./src/LittleTown.sln - name: Upload artifact
- name: Test with the dotnet CLI uses: actions/upload-artifact@v3
run: dotnet test ./src/LittleTown.sln with:
name: Doc
path: ./docs
retention-days: 5
- name: build docker images
run: docker build -t gitea.borealian.ovh/mcmuzzle/ludikzone:latest -f ./docker-prod/Dockerfile .
- name: upload image
run: |
echo "${{ secrets.PERSO_GITEAPASSWORD}}" | docker login gitea.borealian.ovh --username mcmuzzle --password-stdin
docker push gitea.borealian.ovh/mcmuzzle/ludikzone:latest