mirror of
https://github.com/EpicMorg/atlassian-downloader.git
synced 2024-12-28 04:55:29 +03:00
bump
This commit is contained in:
parent
bf2e737ff5
commit
157aba2ace
12
.github/workflows/dotnet-develop.yml
vendored
12
.github/workflows/dotnet-develop.yml
vendored
@ -20,24 +20,24 @@ jobs:
|
|||||||
|
|
||||||
- name: Restore
|
- name: Restore
|
||||||
env:
|
env:
|
||||||
DOTNET_CLI_TELEMETRY_OPTOUT=true
|
DOTNET_CLI_TELEMETRY_OPTOUT: true
|
||||||
DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
|
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
|
||||||
run: |
|
run: |
|
||||||
cd src/atlassian-downloader
|
cd src/atlassian-downloader
|
||||||
dotnet restore
|
dotnet restore
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
env:
|
env:
|
||||||
DOTNET_CLI_TELEMETRY_OPTOUT=true
|
DOTNET_CLI_TELEMETRY_OPTOUT: true
|
||||||
DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
|
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
|
||||||
run: |
|
run: |
|
||||||
cd src/atlassian-downloader
|
cd src/atlassian-downloader
|
||||||
dotnet build --no-restore
|
dotnet build --no-restore
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
env:
|
env:
|
||||||
DOTNET_CLI_TELEMETRY_OPTOUT=true
|
DOTNET_CLI_TELEMETRY_OPTOUT: true
|
||||||
DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
|
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
|
||||||
run: |
|
run: |
|
||||||
cd src/atlassian-downloader
|
cd src/atlassian-downloader
|
||||||
dotnet test --no-build --verbosity normal
|
dotnet test --no-build --verbosity normal
|
||||||
|
12
.github/workflows/dotnet-master.yml
vendored
12
.github/workflows/dotnet-master.yml
vendored
@ -17,24 +17,24 @@ jobs:
|
|||||||
|
|
||||||
- name: Restore
|
- name: Restore
|
||||||
env:
|
env:
|
||||||
DOTNET_CLI_TELEMETRY_OPTOUT=true
|
DOTNET_CLI_TELEMETRY_OPTOUT: true
|
||||||
DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
|
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
|
||||||
run: |
|
run: |
|
||||||
cd src/atlassian-downloader
|
cd src/atlassian-downloader
|
||||||
dotnet restore
|
dotnet restore
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
env:
|
env:
|
||||||
DOTNET_CLI_TELEMETRY_OPTOUT=true
|
DOTNET_CLI_TELEMETRY_OPTOUT: true
|
||||||
DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
|
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
|
||||||
run: |
|
run: |
|
||||||
cd src/atlassian-downloader
|
cd src/atlassian-downloader
|
||||||
dotnet build --no-restore
|
dotnet build --no-restore
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
env:
|
env:
|
||||||
DOTNET_CLI_TELEMETRY_OPTOUT=true
|
DOTNET_CLI_TELEMETRY_OPTOUT: true
|
||||||
DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
|
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
|
||||||
run: |
|
run: |
|
||||||
cd src/atlassian-downloader
|
cd src/atlassian-downloader
|
||||||
dotnet test --no-build --verbosity normal
|
dotnet test --no-build --verbosity normal
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
SET DOTNET_CLI_TELEMETRY_OPTOUT=true
|
||||||
|
SET DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
|
||||||
|
|
||||||
dotnet.exe publish -r win7-x64 --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=true -p:PublishSingleFile=true -p:PublishReadyToRun=true
|
dotnet.exe publish -r win7-x64 --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=true -p:PublishSingleFile=true -p:PublishReadyToRun=true
|
||||||
dotnet.exe publish -r win7-x86 --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=true -p:PublishSingleFile=true -p:PublishReadyToRun=true
|
dotnet.exe publish -r win7-x86 --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=true -p:PublishSingleFile=true -p:PublishReadyToRun=true
|
||||||
dotnet.exe publish -r win81-arm --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=true -p:PublishSingleFile=true -p:PublishReadyToRun=true
|
dotnet.exe publish -r win81-arm --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=true -p:PublishSingleFile=true -p:PublishReadyToRun=true
|
||||||
|
@ -1,8 +1,11 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
dotnet publish -r win7-x64 --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=true -p:PublishSingleFile=true -p:PublishReadyToRun=true
|
export DOTNET_CLI_TELEMETRY_OPTOUT=true
|
||||||
dotnet publish -r win7-x86 --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=true -p:PublishSingleFile=true -p:PublishReadyToRun=true
|
export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
|
||||||
dotnet publish -r win81-arm --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=true -p:PublishSingleFile=true -p:PublishReadyToRun=true
|
|
||||||
dotnet publish -r win10-arm64 --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=true -p:PublishSingleFile=true -p:PublishReadyToRun=true
|
dotnet publish -r win7-x64 --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=true -p:PublishSingleFile=true -p:PublishReadyToRun=false
|
||||||
|
dotnet publish -r win7-x86 --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=true -p:PublishSingleFile=true -p:PublishReadyToRun=false
|
||||||
|
dotnet publish -r win81-arm --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=true -p:PublishSingleFile=true -p:PublishReadyToRun=false
|
||||||
|
dotnet publish -r win10-arm64 --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=true -p:PublishSingleFile=true -p:PublishReadyToRun=false
|
||||||
dotnet publish -r linux-x64 --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=false -p:PublishSingleFile=false -p:PublishReadyToRun=false
|
dotnet publish -r linux-x64 --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=false -p:PublishSingleFile=false -p:PublishReadyToRun=false
|
||||||
dotnet publish -r linux-musl-x64 --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=false -p:PublishSingleFile=false -p:PublishReadyToRun=false
|
dotnet publish -r linux-musl-x64 --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=false -p:PublishSingleFile=false -p:PublishReadyToRun=false
|
||||||
dotnet publish -r osx-x64 --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=false -p:PublishSingleFile=false -p:PublishReadyToRun=false
|
dotnet publish -r osx-x64 --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=false -p:PublishSingleFile=false -p:PublishReadyToRun=false
|
Loading…
Reference in New Issue
Block a user