-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: update `l10n_languages` package to version 1.0.0 * ci!: removed obsolete publish files and fix backup * docs: release v1 with improved docs and fixed typos * chore: move changelog entries for v1.0.0 * refactor: address @coderabbitai code review comments * ci: update tag pattern for package publishing workflow
- Loading branch information
Showing
13 changed files
with
45 additions
and
92 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: publish_packages | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
tags: | ||
- "[a-z]+_[a-z]+-v[0-9].[0-9].[0-9]" | ||
|
||
jobs: | ||
publish: | ||
if: github.ref_type == 'tag' | ||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: write | ||
steps: | ||
- name: Extract package name from the tag | ||
id: extract | ||
run: | | ||
TAG="${GITHUB_REF#refs/tags/}" | ||
PACKAGE_NAME="${TAG%%-v*}" | ||
echo "package_name=$PACKAGE_NAME" >> $GITHUB_OUTPUT | ||
- name: Call shared publish workflow | ||
uses: ./.github/workflows/publish_to_pub_workflow.yaml | ||
with: | ||
package_name: ${{ steps.extract.outputs.package_name }} | ||
tag: ${{ github.ref }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,3 +1,12 @@ | ||
## 1.0.0 | ||
|
||
🎉 First stable release! | ||
|
||
DOCUMENTATION | ||
|
||
- Improved documentation and example. | ||
- Fixed typos in the README. | ||
|
||
## 0.1.0 | ||
|
||
- Initial release. |
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