From ab44bf47e28c953981661efa9d3096ff342b001a Mon Sep 17 00:00:00 2001 From: Devon Carew Date: Fri, 21 Jul 2023 11:23:08 -0700 Subject: [PATCH] blast repo changes: auto-publish (#168) * blast_repo fixes auto-publish * update changelog version --- .github/workflows/publish.yaml | 17 +++++++++++++++++ CHANGELOG.md | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/publish.yaml diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml new file mode 100644 index 00000000..27157a04 --- /dev/null +++ b/.github/workflows/publish.yaml @@ -0,0 +1,17 @@ +# A CI configuration to auto-publish pub packages. + +name: Publish + +on: + pull_request: + branches: [ master ] + push: + tags: [ 'v[0-9]+.[0-9]+.[0-9]+' ] + +jobs: + publish: + if: ${{ github.repository_owner == 'dart-lang' }} + uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main + permissions: + id-token: write # Required for authentication using OIDC + pull-requests: write # Required for writing the pull request note diff --git a/CHANGELOG.md b/CHANGELOG.md index 7105bb95..897ba3fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.13.6-wip +## 0.13.6 * Require Dart 2.19. * Setup `dbService` to do retries for failed requests.