Skip to content

Commit

Permalink
Update prod0 cicd0 nodepool count
Browse files Browse the repository at this point in the history
  • Loading branch information
labbots committed May 24, 2024
1 parent 2536a9e commit ee8d207
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/_build-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:

- name: Set up Python
uses: actions/setup-python@v5
with:
cache: 'poetry'
# with:
# cache: 'poetry'

- name: Install dependencies
run: poetry install
Expand All @@ -55,6 +55,7 @@ jobs:
name: NiimPrintX-Installer-${{ steps.get_tag_name.outputs.VERSION }}-MacOSX-${{ steps.get_architecture.outputs.ARCH }}.dmg
path: dist/NiimPrintX-Installer-${{ steps.get_tag_name.outputs.VERSION }}-MacOSX.dmg
retention-days: 1

- name: Upload CLI package
uses: actions/upload-artifact@v4
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/mac-dmg-builder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ fi
# Since create-dmg does not clobber, be sure to delete previous DMG
[[ -f "${DMG_FILE_NAME}" ]] && rm "${DMG_FILE_NAME}"

echo killing...; sudo pkill -9 XProtect >/dev/null || true;
echo waiting...; while pgrep XProtect; do sleep 3; done;
# Create the DMG
create-dmg \
--volname "${VOLUME_NAME}" \
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,11 @@ jobs:

- name: Display structure of downloaded files
run: ls -R release

- name: Create GitHub Release
id: create_release
uses: softprops/action-gh-release@v2
with:
files: |
release/*
generate_release_notes: true

0 comments on commit ee8d207

Please sign in to comment.