Skip to content
This repository has been archived by the owner on Jan 4, 2023. It is now read-only.

Commit

Permalink
Update dotnet-core-desktop.yml
Browse files Browse the repository at this point in the history
Removing other builds and self-contained to false
  • Loading branch information
jessefreeman committed Aug 4, 2020
1 parent ccd24dd commit bfe1afc
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions .github/workflows/dotnet-core-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet publish -o Builds/macOS -c Release -r osx-x64 --self-contained true -p:PublishSingleFile=true
- name: Build
run: dotnet publish -o Builds/win64 -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true
- name: Build
run: dotnet publish -o Builds/linux64 -c Release -r linux-x64 --self-contained true -p:PublishSingleFile=true
- name: Build
run: dotnet publish -o Builds/linuxARM -c Release -r linux-arm --self-contained true -p:PublishSingleFile=true
run: dotnet publish -o Builds/macOS -c Release -r osx-x64 --self-contained false -p:PublishSingleFile=true
# - name: Build
# run: dotnet publish -o Builds/win64 -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true
# - name: Build
# run: dotnet publish -o Builds/linux64 -c Release -r linux-x64 --self-contained true -p:PublishSingleFile=true
# - name: Build
# run: dotnet publish -o Builds/linuxARM -c Release -r linux-arm --self-contained true -p:PublishSingleFile=true
- name: Upload a Mac Artifact
uses: actions/upload-artifact@v2
with:
Expand All @@ -36,30 +36,30 @@ jobs:
path: Builds/macOS/
# The desired behavior if no files are found using the provided path.
if-no-files-found: warn
- name: Upload a Win Artifact
uses: actions/upload-artifact@v2
with:
# Artifact name
name: win-Build
# A file, directory or wildcard pattern that describes what to upload
path: Builds/win64/
# The desired behavior if no files are found using the provided path.
if-no-files-found: warn
- name: Upload a Linux 64 Artifact
uses: actions/upload-artifact@v2
with:
# Artifact name
name: linux64-Build
# A file, directory or wildcard pattern that describes what to upload
path: Builds/linux64/
# The desired behavior if no files are found using the provided path.
if-no-files-found: warn
- name: Upload a Linux ARM Artifact
uses: actions/upload-artifact@v2
with:
# Artifact name
name: linux64-Build
# A file, directory or wildcard pattern that describes what to upload
path: Builds/linux-arm/
# The desired behavior if no files are found using the provided path.
if-no-files-found: warn
# - name: Upload a Win Artifact
# uses: actions/upload-artifact@v2
# with:
# # Artifact name
# name: win-Build
# # A file, directory or wildcard pattern that describes what to upload
# path: Builds/win64/
# # The desired behavior if no files are found using the provided path.
# if-no-files-found: warn
# - name: Upload a Linux 64 Artifact
# uses: actions/upload-artifact@v2
# with:
# # Artifact name
# name: linux64-Build
# # A file, directory or wildcard pattern that describes what to upload
# path: Builds/linux64/
# # The desired behavior if no files are found using the provided path.
# if-no-files-found: warn
# - name: Upload a Linux ARM Artifact
# uses: actions/upload-artifact@v2
# with:
# # Artifact name
# name: linux64-Build
# # A file, directory or wildcard pattern that describes what to upload
# path: Builds/linux-arm/
# # The desired behavior if no files are found using the provided path.
# if-no-files-found: warn

0 comments on commit bfe1afc

Please sign in to comment.