Skip to content

Commit

Permalink
Add versioning properties for MacOS app bundles
Browse files Browse the repository at this point in the history
Also expands the build script to support building MacOS bundles.
nikolamilekic committed Mar 11, 2022
1 parent bdc9760 commit e5c65a3
Showing 7 changed files with 221 additions and 84 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
@@ -6,13 +6,14 @@ on:

jobs:
build:
runs-on: windows-latest

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v1
- name: Run Fake
run: ./build.cmd -t BuildAction
run: ./build.sh -t BuildAction
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31 changes: 28 additions & 3 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
@@ -6,19 +6,44 @@ on:

jobs:
build:
runs-on: windows-latest

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v1
- name: Run Fake
run: ./build.cmd -t ReleaseAction
run: ./build.sh -t ReleaseAction
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OP_CONNECT_HOST: ${{ secrets.OP_CONNECT_HOST }}
OP_CONNECT_TOKEN: ${{ secrets.OP_CONNECT_TOKEN }}
NUGET_KEY: '{{ op://GitHub/Nuget Api/credential }}'
SLEET_CONFIG: '{{ op://GitHub/Sleet Config/Sleet.json }}'
#publish-windows:
# needs: build
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v2
# with:
# fetch-depth: 0
# - name: Setup .NET
# uses: actions/setup-dotnet@v1
# - name: Run Fake
# run: ./build.cmd -t PublishWindowsAction
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
#publish-macos:
# needs: build
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v2
# with:
# fetch-depth: 0
# - name: Setup .NET
# uses: actions/setup-dotnet@v1
# - name: Run Fake
# run: ./build.sh -t PublishMacOSAction
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion GitInfo.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1
3.2
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## New in 3.2 (Released 2022/03/11)
* Targets expanded to include versioning properties for MacOS app bundles

## New in 3.1 (Released 2022/03/02)
* BaseConverter

Loading

0 comments on commit e5c65a3

Please sign in to comment.