Skip to content

Commit 3461b4f

Browse files
committed
Merge branch 'main' into public
2 parents 58fd6d9 + 6d912c3 commit 3461b4f

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/_build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Package
3232
run: npm pack
3333
- name: Upload artifact
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: build-${{ github.sha }}
3737
if-no-files-found: error

.github/workflows/_publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
install_dependencies: 'false'
3232
- name: Download artifact
33-
uses: actions/download-artifact@v3
33+
uses: actions/download-artifact@v4
3434
with:
3535
name: ${{ inputs.artifact_name }}
3636
path: .

.github/workflows/check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
with:
7979
node-version: ${{ matrix.node }}
8080
- name: Download artifact
81-
uses: actions/download-artifact@v3
81+
uses: actions/download-artifact@v4
8282
with:
8383
name: ${{ needs.build.outputs.artifact_name }}
8484
path: .

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
fetch-depth: 0
2525
- name: Download artifact
26-
uses: actions/download-artifact@v3
26+
uses: actions/download-artifact@v4
2727
with:
2828
name: ${{ needs.build.outputs.artifact_name }}
2929
path: .

.github/workflows/semantic-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ jobs:
3535
runs-on: ubuntu-latest
3636
timeout-minutes: 30
3737
needs: semantic
38-
if: ${{ needs.semantic.outputs.new_release_published == 'true' }}
38+
if: needs.semantic.outputs.new_release_published == 'true' && needs.semantic.outputs.new_release_version != '1.0.0'
3939
steps:
4040
- name: Checkout
4141
uses: actions/checkout@v4
4242
with:
4343
fetch-depth: 1
44-
- name: Release version ${{ steps.release.outputs.new_release_version }} on ${{ github.ref_name }}
44+
- name: Release version ${{ needs.semantic.outputs.new_release_version }} on ${{ github.ref_name }}
4545
run: gh workflow run version.yml --raw-field version=$VERSION --ref $BRANCH
4646
env:
4747
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@seamapi/makenew-tsmodule",
3-
"version": "1.4.2",
3+
"version": "1.4.3",
44
"description": "Package skeleton for a TypeScript module.",
55
"type": "module",
66
"main": "index.js",

0 commit comments

Comments
 (0)