mirror of
https://github.com/bcomnes/deploy-to-neocities.git
synced 2026-03-29 17:31:36 +00:00
Compare commits
13 Commits
v2.0.1
...
9edd9b15c5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9edd9b15c5 | ||
|
|
de00ebfb18 | ||
|
|
442fdb16c6 | ||
|
|
66b26b18d1 | ||
|
|
bcd01efa4b | ||
|
|
b5c3f6f80e | ||
|
|
6595f1c246 | ||
|
|
ae08849335 | ||
|
|
3eacba89fd | ||
|
|
5729d50652 | ||
|
|
b089e0d0bc | ||
|
|
e3fac0f3de | ||
|
|
1fcd576de9 |
@@ -7,7 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
||||||
|
|
||||||
## [v2.0.1](https://github.com/bcomnes/deploy-to-neocities/compare/v2.0.0...v2.0.1)
|
## [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
|
### Commits
|
||||||
|
|
||||||
|
|||||||
@@ -15,11 +15,11 @@ Efficiently deploy a website to [Neocities][nc] using [Github actions](https://g
|
|||||||
```yaml
|
```yaml
|
||||||
name: Deploy to neocities
|
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:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- main
|
||||||
|
|
||||||
concurrency: # prevent concurrent deploys doing strange things
|
concurrency: # prevent concurrent deploys doing strange things
|
||||||
group: deploy-to-neocities
|
group: deploy-to-neocities
|
||||||
@@ -142,6 +142,7 @@ None.
|
|||||||
- https://github.com/tencurse/neocities ([10kph.neocities.org](https://10kph.neocities.org/))
|
- https://github.com/tencurse/neocities ([10kph.neocities.org](https://10kph.neocities.org/))
|
||||||
- https://github.com/alephdfilms/neocities/ ([alephd.neocities.org](https://alephd.neocities.org/)]
|
- https://github.com/alephdfilms/neocities/ ([alephd.neocities.org](https://alephd.neocities.org/)]
|
||||||
- https://sacred.neocities.org/ (https://github.com/M-Valentino/sacredOS)
|
- https://sacred.neocities.org/ (https://github.com/M-Valentino/sacredOS)
|
||||||
|
- https://lenp.net/ (https://github.com/Len42/web-site)
|
||||||
- [See more!](https://github.com/bcomnes/deploy-to-neocities/network/dependents)
|
- [See more!](https://github.com/bcomnes/deploy-to-neocities/network/dependents)
|
||||||
- ...PR your site when you set it up!
|
- ...PR your site when you set it up!
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "deploy-to-neocities",
|
"name": "deploy-to-neocities",
|
||||||
"description": "Github Action to deplpoy a folder to Neocities.org",
|
"description": "Github Action to deplpoy a folder to Neocities.org",
|
||||||
"version": "2.0.1",
|
"version": "2.0.2",
|
||||||
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io/)",
|
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io/)",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/bcomnes/deploy-to-neocities/issues"
|
"url": "https://github.com/bcomnes/deploy-to-neocities/issues"
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "1.10.1",
|
"@actions/core": "1.10.1",
|
||||||
"async-neocities": "2.1.6",
|
"async-neocities": "2.1.6",
|
||||||
"minimatch": "9.0.4",
|
"minimatch": "9.0.5",
|
||||||
"ms": "2.1.3",
|
"ms": "2.1.3",
|
||||||
"pony-cause": "^2.1.4",
|
"pony-cause": "^2.1.4",
|
||||||
"webassert": "3.0.2"
|
"webassert": "3.0.2"
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"gh-release": "^7.0.0",
|
"gh-release": "^7.0.0",
|
||||||
"npm-run-all2": "^6.0.0",
|
"npm-run-all2": "^6.0.0",
|
||||||
"standard": "^17.0.0",
|
"standard": "^17.0.0",
|
||||||
"esbuild": "^0.20.0"
|
"esbuild": "^0.21.0"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/bcomnes/deploy-to-neocities#readme",
|
"homepage": "https://github.com/bcomnes/deploy-to-neocities#readme",
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
|
|||||||
Reference in New Issue
Block a user