Github4Women #29
This file contains hidden or 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: Github4Women | |
on: | |
push: | |
schedule: | |
- cron: '0 * * * *' # Executa a cada hora | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout do código | |
uses: actions/checkout@v3 | |
- name: Rodar script ou comando | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '8.0.x' # Ajuste para a sua versao | |
- name: Restaurar dependências | |
run: dotnet restore github4women/github4women.csproj | |
- name: Build do projeto | |
run: dotnet build github4women/github4women.csproj --no-restore --configuration Release |