We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f89f70d commit 7dcdaeaCopy full SHA for 7dcdaea
.github/workflows/tag-and-publish.yml
@@ -7,7 +7,7 @@ on:
7
8
jobs:
9
build:
10
- runs-on: windows-latest
+ runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v4
13
@@ -16,19 +16,6 @@ jobs:
16
with:
17
node-version: 20
18
19
- # PowerShell script to check for uncommitted changes
20
- - name: Check for uncommitted changes using git status --porcelain
21
- id: check_changes
22
- run: |
23
- $STATUS = git status --porcelain
24
- if ($STATUS) {
25
- Write-Host "Uncommitted changes found"
26
- echo "uncommitted=true" >> $env:GITHUB_OUTPUT
27
- } else {
28
- Write-Host "No uncommitted changes"
29
- echo "uncommitted=false" >> $env:GITHUB_OUTPUT
30
- }
31
-
32
- name: Extract Changelog Entry
33
id: extract_changelog
34
shell: pwsh
0 commit comments