Skip to content

Commit

Permalink
[#271]: Update getAvatarImageByID to include contentType in retur…
Browse files Browse the repository at this point in the history
…n type (#281)

* [#271]: initial template added

* [#271]: lint fix

* [#271]: fixes added

* [#271]: getAvatarImageByID updated for version2

* [#271]: test project name updated
  • Loading branch information
MrRefactoring authored Oct 9, 2023
1 parent 6b764e1 commit 827a676
Show file tree
Hide file tree
Showing 17 changed files with 365 additions and 306 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,8 @@ jobs:
run: npm run test:integration

publish:
name: Publish
name: Package publish
needs:
- build
- lint
- test_unit
- test_integration
runs-on: self-hosted
steps:
Expand All @@ -67,6 +64,8 @@ jobs:

publish-docs:
name: Docs publish
needs:
- test_integration
runs-on: self-hosted
steps:
- name: Checkout code
Expand All @@ -85,6 +84,10 @@ jobs:
- name: Generate docs
run: npm run doc

- name: Extract version
id: pkg
run: echo "::set-output name=version::$(node -p "require('./package.json').version")"

- name: Checkout docs branch
uses: actions/checkout@v4
with:
Expand All @@ -100,5 +103,5 @@ jobs:
git config user.name "GitHub Actions"
git config user.email "[email protected]"
git add .
git commit -m "Update documentation"
git commit -m "Update documentation for version v${{ steps.pkg.outputs.version }}"
git push
Loading

0 comments on commit 827a676

Please sign in to comment.