Compare commits

...

6 Commits

Author SHA1 Message Date
Bret Comnes
e3fac0f3de
2.0.2 2024-04-04 11:44:48 -07:00
Bret Comnes
1fcd576de9
Clarify default branch situation in README 2024-04-04 11:41:01 -07:00
Bret Comnes
f4b0c050cf
2.0.1 2024-04-04 11:38:24 -07:00
Bret Comnes
5a66259a88
Update docs 2024-04-04 11:37:59 -07:00
bcomnes
e2c175c6c7 2.0.0 2024-04-04 18:34:18 +00:00
Bret Comnes
18ba72a8f3
Update action runtime to node20
BREAKING CHANGE: run using node20 action runtime.

Closes https://github.com/bcomnes/deploy-to-neocities/issues/174
2024-04-04 11:33:32 -07:00
6 changed files with 772 additions and 545 deletions

View File

@ -7,7 +7,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
## [v1.1.21](https://github.com/bcomnes/deploy-to-neocities/compare/v1.1.20...v1.1.21)
## [v2.0.2](https://github.com/bcomnes/deploy-to-neocities/compare/v2.0.1...v2.0.2)
### Commits
- Clarify default branch situation in README [`1fcd576`](https://github.com/bcomnes/deploy-to-neocities/commit/1fcd576de99dc8f39086f7239bf22962f3b8e7ae)
## [v2.0.1](https://github.com/bcomnes/deploy-to-neocities/compare/v2.0.0...v2.0.1) - 2024-04-04
### Commits
- Update docs [`5a66259`](https://github.com/bcomnes/deploy-to-neocities/commit/5a66259a88059e84b1a3981aa88389854700f8a8)
## [v2.0.0](https://github.com/bcomnes/deploy-to-neocities/compare/v1.1.21...v2.0.0) - 2024-04-04
### Merged
- Added https://sacred.neocities.org [`#175`](https://github.com/bcomnes/deploy-to-neocities/pull/175)
- chore(deps-dev): bump esbuild from 0.19.12 to 0.20.0 [`#170`](https://github.com/bcomnes/deploy-to-neocities/pull/170)
- chore(deps): bump actions/setup-node from 3 to 4 [`#165`](https://github.com/bcomnes/deploy-to-neocities/pull/165)
### Fixed
- **Breaking change:** Update action runtime to node20 [`#174`](https://github.com/bcomnes/deploy-to-neocities/issues/174)
### Commits
- Merge pull request #179 from bcomnes/dependabot/npm_and_yarn/minimatch-9.0.4 [`d2622ae`](https://github.com/bcomnes/deploy-to-neocities/commit/d2622ae949a095974f8a3ffb695d70658a9911fa)
- chore(deps): bump minimatch from 9.0.3 to 9.0.4 [`0d910df`](https://github.com/bcomnes/deploy-to-neocities/commit/0d910dfd72d5c6a016940426f91622f84d1dbdca)
- Update README.md [`0ee4b4c`](https://github.com/bcomnes/deploy-to-neocities/commit/0ee4b4c3a5bbab316700252a7e41e758773e2737)
## [v1.1.21](https://github.com/bcomnes/deploy-to-neocities/compare/v1.1.20...v1.1.21) - 2023-12-02
### Merged

View File

@ -15,11 +15,11 @@ Efficiently deploy a website to [Neocities][nc] using [Github actions](https://g
```yaml
name: Deploy to neocities
# only run on changes to master
# only run on changes to main. Use main or master depending on whatever your default branch is called.
on:
push:
branches:
- master
- main
concurrency: # prevent concurrent deploys doing strange things
group: deploy-to-neocities
@ -43,7 +43,7 @@ jobs:
npm run build
# When the dist_dir is ready, deploy it to neocities
- name: Deploy to neocities
uses: bcomnes/deploy-to-neocities@v1
uses: bcomnes/deploy-to-neocities@v2
with:
api_token: ${{ secrets.NEOCITIES_API_TOKEN }}
cleanup: false

View File

@ -19,5 +19,5 @@ inputs:
description: A glob string that prevents matched files from ever being deleted.
required: false
runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'

1267
dist/index.js vendored

File diff suppressed because one or more lines are too long

8
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{
"name": "deploy-to-neocities",
"description": "Github Action to deplpoy a folder to Neocities.org",
"version": "1.1.21",
"version": "2.0.2",
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io/)",
"bugs": {
"url": "https://github.com/bcomnes/deploy-to-neocities/issues"