Skip to content

Commit

Permalink
remove steps to better try secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
adamhathcock committed May 14, 2024
1 parent 56071d2 commit 2aeecdf
Showing 1 changed file with 1 addition and 29 deletions.
30 changes: 1 addition & 29 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,36 +18,8 @@ jobs:
with:
dotnet-version: 7.x.x

- name: NuGet Cache
uses: actions/cache@v4
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}

- name: Format
run: ./build.ps1 format

- name: Restore
run: ./build.ps1 restore

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2

- name: Build
run: ./build.ps1 build

- name: Pack
run: ./build.ps1 zip

- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: output.zip
path: output/*.*
compression-level: 0 # no compression

- name: Build Installers
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | sed 's/./& /g'
RUN_ID: ${{ github.run_id }}
run: ./build.ps1 build-installers

0 comments on commit 2aeecdf

Please sign in to comment.