WOW UN LOGO!!! #76
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Exécutable dotnet | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Mise en place de dotnet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
source-url: https://nuget.pkg.github.com/departement-info-cem/index.json | |
env: | |
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: Installer les dépendances | |
working-directory: ./scriptsharp | |
run: dotnet restore | |
- run: dotnet publish | |
working-directory: ./scriptsharp | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: scriptsharp/ScriptSharp/bin/Release/net8.0/win-x64/publish/ScriptSharp.exe | |
tag_name: Script | |
body: Script d'installation pour les cours de la suite mobile du programme technique d'informatique du CÉGEP Édouard-Montpetit. | |
make_latest: true |