From 992c95cde416f7406e8c5208db4731da532c1c41 Mon Sep 17 00:00:00 2001 From: Evan Jacobs Date: Tue, 12 Nov 2024 00:29:11 -0500 Subject: [PATCH] chore: switch to action-based publish --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 11a4aff6..1146cc27 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,6 +25,7 @@ jobs: run: yarn test - name: Create Release Pull Request + id: changesets uses: changesets/action@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -32,3 +33,7 @@ jobs: with: createGithubReleases: true publish: yarn changeset-publish + + - id: deployment + if: steps.changesets.outputs.published == 'true' + uses: actions/deploy-pages@v4