generated from redhat-developer/new-project-template
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from redhat-developer/revert-38-revert-22-mono…
…-core Revert "Revert "Mono core""
- Loading branch information
Showing
1,719 changed files
with
356,541 additions
and
934 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
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
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,20 @@ | ||
name: Generate Errors | ||
on: | ||
workflow_dispatch: | ||
workflow_call: | ||
jobs: | ||
generate_errors: | ||
env: | ||
APP_SERVICES_TOKEN: ${{ secrets.APP_SERVICES_TOKEN }} | ||
BF2_TOKEN: ${{ secrets.BF2_TOKEN }} | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
- name: Fetch errors | ||
run: bash scripts/errors/fetch-errors.sh | ||
- name: Generate errors | ||
run: node scripts/errors/generate_errors.js |
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,17 @@ | ||
name: Generate SDKs | ||
on: | ||
workflow_dispatch: | ||
workflow_call: | ||
jobs: | ||
generate_sdks: | ||
env: | ||
APP_SERVICES_TOKEN: ${{ secrets.APP_SERVICES_TOKEN }} | ||
BF2_TOKEN: ${{ secrets.BF2_TOKEN }} | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Generate SDKs | ||
run: | | ||
bash scripts/generate-go.sh | ||
bash scripts/generate-js.sh |
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,35 @@ | ||
name: npm-publish | ||
on: | ||
workflow_dispatch: | ||
jobs: | ||
npm-publish: | ||
name: npm-publish | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
- name: Use Node.js 16.3.0 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.3.0 | ||
registry-url: "https://registry.npmjs.org" | ||
- run: | | ||
cd app-services-sdk-js | ||
yarn install | ||
yarn build | ||
- name: Inject slug/short variables | ||
uses: rlespinasse/github-slug-action@v4 | ||
# - name: Validate Tag | ||
# run: | | ||
# cd app-services-sdk-js | ||
# yarn semver $GITHUB_REF_SLUG | ||
- name: Update versions of packages | ||
run: | | ||
cd app-services-sdk-js | ||
yarn setupRelease | ||
- name: Publish packages | ||
run: | | ||
cd app-services-sdk-js | ||
npm publish --workspace=packages | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} # |
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
node_modules | ||
openapitools.json |
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,9 @@ | ||
**/package.json | ||
**/tsconfig.json | ||
**/.npmignore | ||
**/.gitignore | ||
**/README.md | ||
**/.travis.yml | ||
**/.openapi-generator-ignore | ||
**/.openapi-generator | ||
**/git_push.sh |
Oops, something went wrong.