Skip to content

Commit 95032f0

Browse files
try this
1 parent b6ce22f commit 95032f0

File tree

7 files changed

+9
-19
lines changed

7 files changed

+9
-19
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v3
11+
with:
12+
token: ${{ secrets.GH_TOKEN}}
1113
- uses: ./.github/actions/install-deps
1214

1315
build:
@@ -58,6 +60,7 @@ jobs:
5860

5961
release:
6062
runs-on: ubuntu-latest
63+
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
6164
needs: build
6265
steps:
6366
- uses: actions/checkout@v3
@@ -66,7 +69,7 @@ jobs:
6669
- name: Prepare repository
6770
run: git fetch --unshallow --tags
6871
- name: Create Release
69-
run: yarn release
72+
run: yarn auto shipit -vv
7073
env:
7174
GH_TOKEN: ${{ secrets.GH_TOKEN }}
7275
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
"build": "npm run clean:build && lerna run build --stream",
2323
"build:watch": "lerna run build:watch --parallel",
2424
"build:readme-toc": "npx doctoc ./README.md",
25-
"release": "auto shipit",
2625
"tsTest:custom": "dtslint packages/custom/types --expectOnly",
2726
"tsTest:main": "dtslint packages/jimp/types --expectOnly"
2827
},

packages/core/package.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,7 @@
1212
"fonts",
1313
"types"
1414
],
15-
"repository": {
16-
"type": "git",
17-
"url": "https://github.com/oliver-moran/jimp.git"
18-
},
19-
"bugs": {
20-
"url": "https://github.com/oliver-moran/jimp/issues"
21-
},
15+
"repository": "jimp-dev/jimp",
2216
"scripts": {
2317
"test": "cross-env BABEL_ENV=test mocha --require @babel/register test/**/*.js",
2418
"test:watch": "npm run test -- --reporter min --watch",

packages/jimp/browser/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Example usage:
2525
</script>
2626
```
2727

28-
See the [main documentation](https://github.com/oliver-moran/jimp) for the full API documenatinon.
28+
See the [main documentation](https://github.com/jimp-dev/jimp) for the full API documenatinon.
2929

3030
## WebWorkers
3131

packages/jimp/package.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,7 @@
2121
"fonts",
2222
"types"
2323
],
24-
"repository": {
25-
"type": "git",
26-
"url": "https://github.com/oliver-moran/jimp.git"
27-
},
28-
"bugs": {
29-
"url": "https://github.com/oliver-moran/jimp/issues"
30-
},
24+
"repository": "jimp-dev/jimp",
3125
"scripts": {
3226
"test": "cross-env BABEL_ENV=test mocha --require @babel/register",
3327
"test:watch": "npm run test -- --reporter min --watch",

packages/jimp/tools/browser-build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const licence =
2424
"Jimp v" +
2525
process.env.npm_package_version +
2626
"\n" +
27-
"https://github.com/oliver-moran/jimp\n" +
27+
"https://github.com/jimp-dev/jimp\n" +
2828
"Ported for the Web by Phil Seaton\n" +
2929
fs.readFileSync(fromRoot("../../LICENSE")) +
3030
"*/";

packages/plugin-print/test/print.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ describe("Write text over image", function () {
6868

6969
it("Jimp loads font from URL", async () => {
7070
const font = await Jimp.loadFont(
71-
"https://raw.githubusercontent.com/oliver-moran/jimp/master/packages/plugin-print/fonts/open-sans/open-sans-16-black/open-sans-16-black.fnt"
71+
"https://raw.githubusercontent.com/jimp-dev/jimp/master/packages/plugin-print/fonts/open-sans/open-sans-16-black/open-sans-16-black.fnt"
7272
);
7373
const expected =
7474
getTestDir(__dirname) + "/images/SANS_16_BLACK-positioned.png";

0 commit comments

Comments
 (0)