Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Cache DMGs
id: cache-dmgs
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: dmgs
key: packages-dmg
Expand All @@ -32,12 +32,12 @@ jobs:
- name: Install Packages
run: |
hdiutil attach dmgs/Packages.dmg
sudo installer -pkg /Volumes/Packages*/packages/Packages.pkg -target /
sudo installer -pkg /Volumes/Packages*/*.pkg -target /
hdiutil detach /Volumes/Packages*
- name: Build Package
run: Installer/build.sh
- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Installer
path: Installer/build/HaCMini.pkg
Expand All @@ -48,7 +48,7 @@ jobs:
if: github.event_name == 'release'
steps:
- name: Download Artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: Installer
- name: Upload Release Asset
Expand Down
Loading
Loading