Skip to content

Commit a00a102

Browse files
committed
Rename actions and steps
1 parent 637b392 commit a00a102

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/pr-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
packages: read
1313

1414
jobs:
15-
preview:
15+
build:
1616
# Only run for local PRs
1717
if: github.event.pull_request.head.repo.full_name == github.repository
1818
runs-on: ubuntu-latest

.github/workflows/pr-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
contents: read
1212

1313
jobs:
14-
preview:
14+
preview-version:
1515
# Only run for local PRs
1616
if: github.event.pull_request.head.repo.full_name == github.repository
1717
runs-on: ubuntu-latest

.github/workflows/rc-build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Release new version
1+
name: Release new RC release
22

33
on:
44
push:
@@ -62,6 +62,11 @@ jobs:
6262
echo "new_version=$new_version" >> $GITHUB_OUTPUT
6363
echo "hash_version=$hash_version" >> $GITHUB_OUTPUT
6464
65+
- name: Update RC tag
66+
run: |
67+
git tag -f rc
68+
git push origin rc --force
69+
6570
- name: Setup NuGet source
6671
run: |
6772
dotnet nuget add source \
@@ -195,8 +200,3 @@ jobs:
195200
./build_artifacts/version.txt
196201
env:
197202
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
198-
199-
- name: Update RC tag
200-
run: |
201-
git tag -f rc
202-
git push origin rc --force

0 commit comments

Comments
 (0)