diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-10-29 10:32:02 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-10-29 10:32:02 -0500 |
commit | 39808d6939833e18528628e7af9495f8d080150b (patch) | |
tree | 07a27b110e9061bb29017ea3a6584d93620f7e60 /.github/workflows/changesets.yml | |
parent | Basic README + LFS strikes again (diff) | |
download | locusts-39808d6939833e18528628e7af9495f8d080150b.tar locusts-39808d6939833e18528628e7af9495f8d080150b.tar.gz locusts-39808d6939833e18528628e7af9495f8d080150b.tar.bz2 locusts-39808d6939833e18528628e7af9495f8d080150b.tar.lz locusts-39808d6939833e18528628e7af9495f8d080150b.tar.xz locusts-39808d6939833e18528628e7af9495f8d080150b.tar.zst locusts-39808d6939833e18528628e7af9495f8d080150b.zip |
feat: Deno and Changesets
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '.github/workflows/changesets.yml')
-rw-r--r-- | .github/workflows/changesets.yml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/.github/workflows/changesets.yml b/.github/workflows/changesets.yml new file mode 100644 index 0000000..e5613b8 --- /dev/null +++ b/.github/workflows/changesets.yml @@ -0,0 +1,38 @@ +name: Changesets + +on: + push: + branches: + - master + +jobs: + changesets: + name: Changesets + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Cache turborepo + uses: actions/cache@v4 + with: + path: .turbo + key: ${{ runner.os }}-turbo-${{ github.sha }} + restore-keys: | + ${{ runner.os }}-turbo- + - name: Install pnpm and dependencies + uses: pnpm/action-setup@v4 + with: + run_install: true + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: "latest" + - name: Create PR or Publish + id: changesets + uses: changesets/action@v1 + with: + publish: pnpm publish-packages + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NPM_CONFIG_PROVENANCE: tre + NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
\ No newline at end of file |