fix: make lang return undefined when the account is not defined (#685) #488
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
name: release-please | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
pull-requests: write | |
# needed for the auto-tag | |
issues: write | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: googleapis/release-please-action@v4 | |
id: release | |
with: | |
token: ${{ secrets.RELEASE_PLEASE_PAT }} | |
release-type: node | |
- uses: actions/checkout@v4 | |
- name: Auto Tag | |
uses: graasp/graasp-deploy/.github/actions/auto-tag-after-release@v1 | |
with: | |
releases_created: ${{ steps.release.outputs.releases_created }} | |
tag_name: ${{ steps.release.outputs.tag_name }} | |
# ------------------------------------------------------------------------- | |
# This section is useful only if you plan on publishing your package to NPM | |
# Remove it if you do not plan to publish to NPM | |
- name: Publish to NPM | |
uses: graasp/graasp-deploy/.github/actions/publish-to-npm@v1 | |
with: | |
npm-token: ${{ secrets.NPM_TOKEN }} | |
if: ${{ steps.release.outputs.releases_created == 'true' }} | |
# ------------------------------------------------------------------------- |