Skip to content

Commit cad1771

Browse files
committed
Use more descriptive names for Go release workflows
1 parent 5b9256e commit cad1771

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

workflow-templates/dependabot/workflow-template-copies/.github/workflows/publish-go-nightly-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Source: https://github.com/arduino/.github/blob/master/workflow-templates/publish-go-nightly-task.md
2-
name: nightly
2+
name: Publish Nightly Build
33

44
on:
55
schedule:
@@ -83,7 +83,7 @@ jobs:
8383
# GitHub's upload/download-artifact@v1 actions don't preserve file permissions,
8484
# so we need to add execution permission back until @v2 actions are released.
8585
chmod +x dist/arduino-cli_osx_darwin_amd64/arduino-cli
86-
PACKAGE_FILENAME="$(basename dist/arduino-cli_${{ github.workflow }}-*_macOS_64bit.tar.gz)"
86+
PACKAGE_FILENAME="$(basename dist/arduino-cli_nightly-*_macOS_64bit.tar.gz)"
8787
tar -czvf "dist/$PACKAGE_FILENAME" \
8888
-C dist/arduino-cli_osx_darwin_amd64/ arduino-cli \
8989
-C ../../ LICENSE.txt

workflow-templates/dependabot/workflow-template-copies/.github/workflows/release-go-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/release-go-task.md
2-
name: release
2+
name: Release
33

44
on:
55
push:

workflow-templates/publish-go-nightly-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Source: https://github.com/arduino/.github/blob/master/workflow-templates/publish-go-nightly-task.md
2-
name: nightly
2+
name: Publish Nightly Build
33

44
on:
55
schedule:
@@ -83,7 +83,7 @@ jobs:
8383
# GitHub's upload/download-artifact@v1 actions don't preserve file permissions,
8484
# so we need to add execution permission back until @v2 actions are released.
8585
chmod +x dist/arduino-cli_osx_darwin_amd64/arduino-cli
86-
PACKAGE_FILENAME="$(basename dist/arduino-cli_${{ github.workflow }}-*_macOS_64bit.tar.gz)"
86+
PACKAGE_FILENAME="$(basename dist/arduino-cli_nightly-*_macOS_64bit.tar.gz)"
8787
tar -czvf "dist/$PACKAGE_FILENAME" \
8888
-C dist/arduino-cli_osx_darwin_amd64/ arduino-cli \
8989
-C ../../ LICENSE.txt

workflow-templates/release-go-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/release-go-task.md
2-
name: release
2+
name: Release
33

44
on:
55
push:

0 commit comments

Comments
 (0)