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

Upgrade to use JFrog workflows v1.16.5 #865

Merged
merged 1 commit into from
May 28, 2024
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/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
jobs:

pr-build:
uses: ritterim/public-github-actions/.github/workflows/npm-packages-pr-build.yml@v1.9.0
uses: ritterim/public-github-actions/.github/workflows/npm-packages-pr-build.yml@v1.16.5
#uses: ./.github/workflows/npm-packages-pr-build.yml
with:
always_increment_patch_version: true
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/pr-merged.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,21 @@ on:
jobs:

npm-packages-pr-create-tag:
uses: ritterim/public-github-actions/.github/workflows/npm-packages-pr-create-tag.yml@v1.9.0
#uses: ./.github/workflows/npm-packages-pr-create-tag.yml
uses: ritterim/public-github-actions/.github/workflows/npm-packages-pr-create-tag-jfrog.yml@v1.16.5
#uses: ./.github/workflows/npm-packages-pr-create-tag-jfrog.yml
if: github.event.pull_request.merged == true
secrets:
gh_actions_secret_passing_passphrase: ${{ secrets.ACTIONS_SECRET_PASSING_PASSPHRASE }}
gh_app_private_key: ${{ secrets.RIMDEV_NPM_RELEASES_APP_PRIVATE_KEY }}
with:
always_increment_patch_version: true
gh_app_id: ${{ vars.RIMDEV_NPM_RELEASES_APP_APPID }}
jfrog_api_base_url: ${{ vars.JFROG_API_BASE_URL }}
jfrog_artifactory_repository: "${{ vars.JFROG_NPM_PACKAGE_REPO_BASENAME }}-draft"
jfrog_audit_xray_watch_list: ${{ vars.JFROG_AUDIT_XRAY_WATCH_LIST }}
jfrog_build_basename: ${{ vars.JFROG_BUILD_BASENAME }}
jfrog_npm_feed_repo: ${{ vars.JFROG_ARTIFACTORY_VIRTUAL_REPO_NPM }}
jfrog_npm_package_repo_basename: ${{ vars.JFROG_NPM_PACKAGE_REPO_BASENAME }}
jfrog_oidc_provider_name: ${{ vars.JFROG_GHA_OIDC_PROVIDER_NAME }}
npm_package_name: platform-ui
run_tests: false
11 changes: 9 additions & 2 deletions .github/workflows/version-tag-build-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,20 @@ on:
jobs:

version-tag-build:
uses: ritterim/public-github-actions/.github/workflows/npm-packages-release-on-tag.yml@v1.9.0
#uses: ./.github/workflows/npm-packages-release-on-tag.yml
uses: ritterim/public-github-actions/.github/workflows/npm-packages-release-on-tag-jfrog.yml@v1.16.5
#uses: ./.github/workflows/npm-packages-release-on-tag-jfrog.yml
secrets:
npmjs_org_api_key: ${{ secrets.RITTERIM_NPMJS_PUBLISH_TOKEN }}
with:
allowed_branches: |
master
jfrog_api_base_url: ${{ vars.JFROG_API_BASE_URL }}
jfrog_artifactory_repository: "${{ vars.JFROG_NPM_PACKAGE_REPO_BASENAME }}-prod"
jfrog_audit_xray_watch_list: ${{ vars.JFROG_AUDIT_XRAY_WATCH_LIST }}
jfrog_build_basename: ${{ vars.JFROG_BUILD_BASENAME }}
jfrog_npm_feed_repo: ${{ vars.JFROG_ARTIFACTORY_VIRTUAL_REPO_NPM }}
jfrog_npm_package_repo_basename: ${{ vars.JFROG_NPM_PACKAGE_REPO_BASENAME }}
jfrog_oidc_provider_name: ${{ vars.JFROG_GHA_OIDC_PROVIDER_NAME }}
npm_package_name: platform-ui
run_tests: false
npmjs_org_access_public: true
Expand Down
Loading