Skip to content

Commit

Permalink
Merge pull request #1189 from Chia-Network/new-notarization
Browse files Browse the repository at this point in the history
Fix macos notarization
  • Loading branch information
TheLastCicada committed Apr 2, 2024
2 parents 1cdb9d8 + 108f182 commit 653b19c
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-installers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ jobs:
- name: Notarize
run: |
DMG_FILE=$(find ${{ github.workspace }}/dist/ -type f -name '*.dmg')
npm install -g notarize-cli
notarize-cli \
--file="$DMG_FILE" \
--bundle-id net.chia.cadt-ui \
--username "${{ secrets.APPLE_NOTARIZE_USERNAME }}" \
--password "${{ secrets.APPLE_NOTARIZE_PASSWORD }}"
xcrun notarytool submit \
--wait \
--apple-id "${{ secrets.APPLE_NOTARIZE_USERNAME }}" \
--password "${{ secrets.APPLE_NOTARIZE_PASSWORD }}" \
--team-id "${{ secrets.APPLE_TEAM_ID }}" \
"$DMG_FILE"
- name: Upload Mac Installer
uses: actions/upload-artifact@v3
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## [1.2.14](https://github.com/Chia-Network/cadt-ui/compare/1.2.13...1.2.14) (2024-03-06)


### Bug Fixes

* pagination for myprojects action ([f0f07c7](https://github.com/Chia-Network/cadt-ui/commit/f0f07c70524b22f9bd499d4885e9db3615e62c47))



## [1.2.13](https://github.com/Chia-Network/cadt-ui/compare/1.2.12...1.2.13) (2024-02-27)



## [1.2.12](https://github.com/Chia-Network/cadt-ui/compare/1.2.11...1.2.12) (2024-02-26)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cadt-ui",
"version": "1.2.13",
"version": "1.2.14",
"private": true,
"author": "Chia Network Inc. <hello@chia.net>",
"homepage": "./",
Expand Down
2 changes: 1 addition & 1 deletion src/store/actions/climateWarehouseActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ export const getMyProjects = myOrgUid => {

try {
const response = await fetchWrapper(
`${constants.API_HOST}/projects?orgUid=${myOrgUid}`,
`${constants.API_HOST}/projects?orgUid=${myOrgUid}&page=1&limit=500`,
);

if (response.ok) {
Expand Down

0 comments on commit 653b19c

Please sign in to comment.