-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into feat/pocketbase-0.23.0
- Loading branch information
Showing
6 changed files
with
3,491 additions
and
4,617 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: 🚀 Publish new version | ||
# Run this on every push to master and next | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- next | ||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
publish: | ||
# Use the latest version of Ubuntu | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
issues: write | ||
pull-requests: write | ||
id-token: write | ||
steps: | ||
# Checkout repository | ||
- name: 📥 Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
|
||
# Setup Node | ||
- name: 📦 Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "lts/*" | ||
cache: "npm" | ||
|
||
# Install dependencies | ||
- name: 📦 Install dependencies | ||
run: | | ||
npm ci | ||
# Lint code | ||
- name: 🧹 Lint code | ||
run: npm run lint | ||
|
||
# Create release | ||
- name: 🚀 Create release | ||
id: release | ||
uses: cycjimmy/semantic-release-action@v4 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# [1.0.0](https://github.com/pawcoding/astro-loader-pocketbase/compare/v0.5.0...v1.0.0) (2024-12-07) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* **release:** update version number ([901af52](https://github.com/pawcoding/astro-loader-pocketbase/commit/901af52bfd91dc970e8bcee6fffcf8aaae97c75f)) | ||
|
||
|
||
### Documentation | ||
|
||
* **README:** add note for compatibility ([2613918](https://github.com/pawcoding/astro-loader-pocketbase/commit/261391897ad6984eebbaf7bbb8195ada2382eb67)) | ||
|
||
|
||
### BREAKING CHANGES | ||
|
||
* **release:** This is the first stable release of this package. | ||
* **README:** This marks the first stable release of this package. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.