From 9ea6fa714e9beb7ef27b3dc22e61744c501ab4e0 Mon Sep 17 00:00:00 2001 From: Minsu Lee Date: Sat, 25 Nov 2023 14:42:00 +0900 Subject: [PATCH] feat: add wrap with observer assist --- .github/workflows/publish.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9551f10b..d36ee0e0 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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 }} \ No newline at end of file