Skip to content

[#271]: Update getAvatarImageByID to include contentType in return type #281

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

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
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 "actions@github.com"
git add .
git commit -m "Update documentation"
git commit -m "Update documentation for version v${{ steps.pkg.outputs.version }}"
git push
Loading