Skip to content

Commit

Permalink
🎉 feat: provenance publish
Browse files Browse the repository at this point in the history
  • Loading branch information
SaltyAom committed Sep 5, 2024
1 parent 8a0f7b6 commit 7b982cf
Show file tree
Hide file tree
Showing 8 changed files with 150 additions and 4 deletions.
49 changes: 49 additions & 0 deletions .github/ISSUE_TEMPLATE/2-bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: 🐛 Bug Report
description: Report an issue that should be fixed
labels: [bug]
body:
- type: markdown
attributes:
value: |
Thank you for submitting a bug report. It helps make Elysia.JS better.
If you need help or support using Elysia.JS, and are not reporting a bug, please
head over to Q&A discussions [Discussions](https:/elysiajs/elysia/discussions/categories/q-a), where you can ask questions in the Q&A forum.
Make sure you are running the version of Elysia.JS and Bun.Sh
The bug you are experiencing may already have been fixed.
Please try to include as much information as possible.
- type: input
attributes:
label: What version of Elysia is running?
description: Copy the output of `Elysia --revision`
- type: input
attributes:
label: What platform is your computer?
description: |
For MacOS and Linux: copy the output of `uname -mprs`
For Windows: copy the output of `"$([Environment]::OSVersion | ForEach-Object VersionString) $(if ([Environment]::Is64BitOperatingSystem) { "x64" } else { "x86" })"` in the PowerShell console
- type: textarea
attributes:
label: What steps can reproduce the bug?
description: Explain the bug and provide a code snippet that can reproduce it.
validations:
required: true
- type: textarea
attributes:
label: What is the expected behavior?
description: If possible, please provide text instead of a screenshot.
- type: textarea
attributes:
label: What do you see instead?
description: If possible, please provide text instead of a screenshot.
- type: textarea
attributes:
label: Additional information
description: Is there anything else you think we should know?
- type: input
attributes:
label: Have you try removing the `node_modules` and `bun.lockb` and try again yet?
description: rm -rf node_modules && bun.lockb
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/3-feature-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: 🚀 Feature Request
description: Suggest an idea, feature, or enhancement
labels: [enhancement]
body:
- type: markdown
attributes:
value: |
Thank you for submitting an idea. It helps make Elysia.JS better.
If you want to discuss Elysia.JS, or learn how others are using Elysia.JS, please
head to our [Discord](https://discord.com/invite/y7kH46ZE) server, where you can chat among the community.
- type: textarea
attributes:
label: What is the problem this feature would solve?
validations:
required: true
- type: textarea
attributes:
label: What is the feature you are proposing to solve the problem?
validations:
required: true
- type: textarea
attributes:
label: What alternatives have you considered?
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
blank_issues_enabled: true
contact_links:
- name: 📗 Documentation Issue
url: https:/elysiajs/documentation/issues/new/choose
about: Head over to our Documentation repository!
- name: 💬 Ask a Question
url: https://discord.gg/eaFJ2KDJck
about: Head over to our Discord!
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: 2
updates:
- package-ecosystem: 'npm'
directory: './'
schedule:
interval: 'daily'

- package-ecosystem: 'github-actions'
directory: './'
schedule:
interval: 'daily'
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup bun
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.1.12
bun-version: latest

- name: Install packages
run: bun install
Expand All @@ -25,4 +25,4 @@ jobs:
run: bun run build

- name: Test
run: bun run test
run: bun run test
50 changes: 50 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Publish

on:
release:
types: [published]

defaults:
run:
shell: bash

permissions:
id-token: write

env:
# Enable debug logging for actions
ACTIONS_RUNNER_DEBUG: true

jobs:
publish-npm:
name: 'Publish: npm Registry'
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@v4

- name: 'Setup Bun'
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
registry-url: "https://registry.npmjs.org"

- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'

- name: Install packages
run: bun install

- name: Build code
run: bun run build

- name: Test
run: bun run test

- name: 'Publish'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npm publish --provenance --access=public
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.1.3 - 5 Sep 2024
Feature:
- add provenance publish

# 1.1.2 - 25 Jul 2024
Feature:
- [#115](https:/elysiajs/eden/pull/115) Stringify query params to allow the nested object
Expand Down Expand Up @@ -82,7 +86,7 @@ Bug fix:
Feature:
- support for elysia 1.0.2

# 1.0.0 - 16 Mar 2024
# 1.0.0 - 16 Mar 2024
Feature:
- treaty2

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elysiajs/eden",
"version": "1.1.2",
"version": "1.1.3",
"description": "Fully type-safe Elysia client",
"author": {
"name": "saltyAom",
Expand Down

0 comments on commit 7b982cf

Please sign in to comment.