-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PT-7847: Fix update subscription number in the order details (#70)
- Loading branch information
Leysan Nigmatullina
committed
Aug 30, 2022
1 parent
64d26f2
commit 0ee7944
Showing
8 changed files
with
239 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
# v3.200.15 | ||
name: Release hotfix | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
incrementPatch: | ||
description: 'Increment patch version.' | ||
required: true | ||
default: true | ||
type: boolean | ||
|
||
jobs: | ||
test: | ||
uses: VirtoCommerce/.github/.github/workflows/[email protected] | ||
secrets: | ||
sonarToken: ${{ secrets.SONAR_TOKEN }} | ||
|
||
build: | ||
uses: VirtoCommerce/.github/.github/workflows/[email protected] | ||
with: | ||
uploadPackage: 'true' | ||
uploadDocker: 'false' | ||
forceVersionSuffix: 'false' | ||
incrementPatch: ${{ github.event.inputs.incrementPatch }} | ||
secrets: | ||
envPAT: ${{ secrets.REPO_TOKEN }} | ||
|
||
get-metadata: | ||
runs-on: ubuntu-20.04 | ||
outputs: | ||
changelog: ${{ steps.changelog.outputs.changelog }} | ||
steps: | ||
|
||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Get Changelog | ||
id: changelog | ||
uses: VirtoCommerce/vc-github-actions/changelog-generator@master | ||
|
||
publish-github-release: | ||
needs: | ||
[build, test, get-metadata] | ||
uses: VirtoCommerce/.github/.github/workflows/[email protected] | ||
with: | ||
fullKey: ${{ needs.build.outputs.packageFullKey }} | ||
changeLog: '${{ needs.get-metadata.outputs.changeLog }}' | ||
incrementPatch: ${{ github.event.inputs.incrementPatch }} | ||
|
||
secrets: | ||
envPAT: ${{ secrets.GITHUB_TOKEN }} | ||
nugetKey: ${{ secrets.NUGET_KEY }} | ||
|
||
increment-version: | ||
needs: | ||
[publish-github-release] | ||
if: ${{ github.event.inputs.incrementPatch == 'true' }} | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install VirtoCommerce.GlobalTool | ||
uses: VirtoCommerce/vc-github-actions/setup-vcbuild@master | ||
|
||
- name: Setup Git Credentials | ||
uses: VirtoCommerce/vc-github-actions/setup-git-credentials-github@master | ||
with: | ||
githubToken: ${{ secrets.REPO_TOKEN }} | ||
|
||
- name: Increment Version | ||
run: | | ||
vc-build IncrementPatch | ||
git add Directory.Build.props *module.manifest | ||
git commit -m "ci: Auto IncrementPatch" | ||
git push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# v3.200.15 | ||
name: Publish nuget | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
publishAlpha: | ||
description: 'Publish nuget as alpha version.' | ||
required: true | ||
default: true | ||
type: boolean | ||
|
||
jobs: | ||
test: | ||
uses: VirtoCommerce/.github/.github/workflows/[email protected] | ||
secrets: | ||
sonarToken: ${{ secrets.SONAR_TOKEN }} | ||
|
||
build: | ||
uses: VirtoCommerce/.github/.github/workflows/[email protected] | ||
with: | ||
uploadPackage: 'true' | ||
uploadDocker: 'false' | ||
forceVersionSuffix: ${{ github.event.inputs.publishAlpha }} | ||
secrets: | ||
envPAT: ${{ secrets.REPO_TOKEN }} | ||
|
||
publish-nuget: | ||
needs: | ||
[build, test] | ||
uses: VirtoCommerce/.github/.github/workflows/[email protected] | ||
with: | ||
fullKey: ${{ needs.build.outputs.packageFullKey }} | ||
forceGithub: false | ||
secrets: | ||
envPAT: ${{ secrets.GITHUB_TOKEN }} | ||
nugetKey: ${{ secrets.NUGET_KEY }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# v3.200.15 | ||
name: Release | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
release: | ||
uses: VirtoCommerce/.github/.github/workflows/[email protected] | ||
secrets: | ||
envPAT: ${{ secrets.REPO_TOKEN }} |
Oops, something went wrong.