Skip to content

Commit

Permalink
bump to 1.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinhsmith committed Dec 30, 2024
1 parent c3def48 commit 9e19353
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-gh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
deploy-github:
permissions: write-all
runs-on: self-hosted
runs-on: ubuntu-latest
environment: Publish
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
deploy-npm:
permissions: write-all
runs-on: self-hosted
runs-on: ubuntu-latest
environment: Publish
steps:
- uses: actions/checkout@v4
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push]

jobs:
check_exists:
runs-on: self-hosted
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
Expand All @@ -14,7 +14,10 @@ jobs:
skip_after_successful_duplicate: "true"
concurrent_skipping: "same_content"
test:
runs-on: self-hosted
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
needs: check_exists
if: ${{ needs.check_exists.outputs.should_skip != 'true' }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gavinhsmith/shutdown",
"version": "1.0.11",
"version": "1.0.12",
"description": "A simple shutdown handler for Node.",
"type": "module",
"main": "./dist/index.js",
Expand Down

0 comments on commit 9e19353

Please sign in to comment.