Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unified version applier #62

Merged
merged 7 commits into from
Dec 17, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore: create github tag after successful deployment
rycont committed Dec 17, 2024
commit a4a2c5c81bb17a9a423839bcbf3449c1db585171
8 changes: 2 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -29,8 +29,8 @@ jobs:
- name: Install Dependencies
run: deno install --allow-scripts

- name: Run tests
run: deno task test
- name: Publish to JSR
run: deno publish

- name: Get version from deno.json
id: get_version
@@ -42,7 +42,3 @@ jobs:
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git tag -a v${{ steps.get_version.outputs.version }} -m "Release version ${{ steps.get_version.outputs.version }}"
git push origin v${{ steps.get_version.outputs.version }}
continue-on-error: true

- name: Publish to JSR
run: deno publish
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -27,4 +27,4 @@ jobs:
run: deno install --allow-scripts

- name: Run tests
run: deno task test
run: deno task --recursive test