Skip to content

Commit

Permalink
chore: auto-release from main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
hugojosefson committed Oct 26, 2024
1 parent fbc6335 commit a28b09b
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 29 deletions.
29 changes: 0 additions & 29 deletions .github/workflows/publish.yaml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: release

on:
push:
branches:
- main

jobs:
publish:
runs-on: ubuntu-latest

permissions:
contents: write
id-token: write

steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v2

- name: Configure git
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Release a new version
run: deno task release

- name: Publish the new version
run: deno publish

0 comments on commit a28b09b

Please sign in to comment.