Skip to content

Commit

Permalink
feat: add wrap with observer assist
Browse files Browse the repository at this point in the history
  • Loading branch information
amondnet committed Dec 13, 2023
1 parent bdd6836 commit 9ea6fa7
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,30 @@ jobs:
env:
TAG: ${{steps.publish.outputs.package}}-${{steps.publish.outputs.localVersion}}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

publish_lint_packages:
runs-on: ubuntu-latest

strategy:
matrix:
package: [ "mobx_lint" ]

steps:
- uses: actions/checkout@v3

- name: Publish if new
id: publish
uses: k-paxian/dart-package-publisher@master
with:
relativePath: ${{ matrix.package }}
accessToken: ${{ secrets.OAUTH_ACCESS_TOKEN }}
refreshToken: ${{ secrets.OAUTH_REFRESH_TOKEN }}
suppressBuildRunner: true
skipTests: true

- name: Tag commit
if: steps.publish.outputs.success
uses: hole19/git-tag-action@master
env:
TAG: ${{steps.publish.outputs.package}}-${{steps.publish.outputs.localVersion}}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 9ea6fa7

Please sign in to comment.