Skip to content

Commit

Permalink
feat(emoji): expose a function to wrap emoji with a format (#66)
Browse files Browse the repository at this point in the history
* feat(emoji): expose a function to wrap emoji with a format

* ci: use $GITHUB_OUTPUT env

Co-authored-by: JamzumSum <[email protected]>
  • Loading branch information
github-actions[bot] and JamzumSum authored Jan 3, 2023
1 parent 05b972a commit 00fef5a
Show file tree
Hide file tree
Showing 5 changed files with 185 additions and 176 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
id: build
run: |
poetry build
echo "::set-output name=package::$(poetry version -s)"
echo "package=$(poetry version -s)" >> $GITHUB_OUTPUT
- uses: softprops/action-gh-release@v1
with:
files: dist/*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ jobs:
ref: beta
- name: Get SHA
id: sha
run: echo "::set-output name=sha::$(git rev-parse --short HEAD)"
run: echo "sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
fetch-depth: 0
- name: Generate a changelog
uses: orhun/git-cliff-action@v1
uses: orhun/git-cliff-action@v2
id: git-cliff
with:
config: cliff.toml
Expand Down
Loading

0 comments on commit 00fef5a

Please sign in to comment.