Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating pkg version to fix automated build and updating Release Notes #217

Merged
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/pullrequest_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
# Creating a new Package version
- name: Creating a new Package version
run: |
JSON=$(sf package version create --target-dev-hub DevHub --package ${{ vars.SF_PKG_ID }} --installation-key ${{ secrets.SF_PKG_INSTALL_KEY }} --code-coverage --json --releasenotes-url ${{ vars.SF_RELEASE_NOTES_URL }} --json --wait 20);
JSON=$(sf package version create --target-dev-hub DevHub --package ${{ vars.SF_PKG_ID }} --installation-key ${{ secrets.SF_PKG_INSTALL_KEY }} --releasenotes-url ${{ vars.SF_RELEASE_NOTES_URL }} --json --code-coverage --wait 20);
STATUS=$(echo $JSON | jq '.result.Status');
ID=$(echo $JSON | jq -r '.result.Id');

Expand Down
5 changes: 5 additions & 0 deletions docs/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# ScoreHub Release Notes

## version 2.0.0.WIP
### version 2.0.0.1
- Optimizing SOQL queries
- Refactoring Unit tests to migrate from System.Assert to Assert class

## version 1.0.0.1
First release version of ScoreHub app
Main functionality included in the release:
Expand Down
7 changes: 4 additions & 3 deletions sfdx-project.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
"path": "force-app",
"default": true,
"package": "ScoreHub",
"versionName": " ScoreHub v1.0",
"versionNumber": "1.0.0.NEXT",
"versionDescription": "ScoreHub version 1.0",
"versionName": " ScoreHub v2.0",
"versionNumber": "2.0.0.NEXT",
"ancestorVersion": "HIGHEST",
"versionDescription": "ScoreHub version 2.0",
"postInstallScript": "ScoreHubConfig"
}
],
Expand Down
Loading