build testing: try adding back cache with no restore #62
Workflow file for this run
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: .NET Build and Publish | |
on: | |
pull_request: | |
branches: ["dui3/alpha", "dui3/ci/github-actions-test"] | |
permissions: | |
actions: write | |
jobs: | |
build-and-publish: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 7.x.x | |
- name: Set up secret file | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
echo $GITHUB_TOKEN >> secrets.txt | |
- name: Build Installers | |
env: | |
RUN_ID: ${{ github.run_id }} | |
run: ./build.ps1 build-installers |