Skip to content

Commit ed53a23

Browse files
committed
chore: Added changelog and release generation.
1 parent 1c0e61d commit ed53a23

File tree

12 files changed

+501
-124
lines changed

12 files changed

+501
-124
lines changed

.github/workflows/check-dist.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: CI
22

33
on:
44
push:
5-
branches:
6-
- main
75
paths-ignore:
86
- "**.md"
97
- "**.template"
@@ -18,7 +16,7 @@ jobs:
1816
test:
1917
runs-on: ${{ matrix.os }}
2018
strategy:
21-
fail-fast: false
19+
fail-fast: true
2220
matrix:
2321
os: [windows-latest, macos-latest, ubuntu-latest]
2422
steps:

.github/workflows/release.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
6+
permissions:
7+
contents: write
8+
pull-requests: write
9+
10+
name: release-please
11+
12+
jobs:
13+
release-please:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: google-github-actions/release-please-action@v4
17+
with:
18+
# this is a built-in strategy in release-please, see "Action Inputs"
19+
# for more options
20+
release-type: node
21+
22+
23+
24+
25+
26+
27+
28+

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,4 @@ gm-sandbox
88
bootstrapper
99
runtimes
1010
.env
11-
dist/package.json
1211
settings_override.json

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# igor-setup
22

3-
This action allows you to set up the [Igor executable](https://manual.gamemaker.io/beta/en/#t=Settings%2FBuilding_via_Command_Line.htm) to allow building GameMaker projects.
3+
This action allows you to set up the [Igor executable](https://manual.gamemaker.io/beta/en/#t=Settings%2FBuilding_via_Command_Line.htm) to build GameMaker projects with the [Igor-Build](https://github.com/bscotch/igor-build) GitHub Action.
44

55
### Caveats
66

@@ -52,4 +52,4 @@ This action allows you to set up the [Igor executable](https://manual.gamemaker.
5252

5353
## Examples
5454

55-
See <https://github.com/shichen85/igor_demo/blob/bdafd0c5b1e6a237cbe6eb3fd2c01791c3aa52ab/.github/workflows/ci.yml>
55+
See <https://github.com/bscotch/ganary/.github/workflows/ci.yml>

0 commit comments

Comments
 (0)