10000 [skip-changelog] Avoid running publish-go-tester-task if tag is set by MatteoPologruto · Pull Request #1984 · arduino/arduino-cli · GitHub
[go: up one dir, main page]

Skip to content

[skip-changelog] Avoid running publish-go-tester-task if tag is set #1984

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 7, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update .github/workflows/publish-go-tester-task.yml
Co-authored-by: per1234 <accounts@perglass.com>
  • Loading branch information
MatteoPologruto and per1234 authored Dec 2, 2022
commit 83c8b5203770da8197420064c2432730eee2cb9b
7 changes: 1 addition & 6 deletions .github/workflows/publish-go-tester-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,11 @@ jobs:
outputs:
result: ${{ steps.determination.outputs.result }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Determine if the rest of the workflow should run
id: determination
run: |
RELEASE_BRANCH_REGEX="refs/heads/[0-9]+.[0-9]+.x"
TAG="$(git tag --points-at=HEAD 2> /dev/null | head -n1)"
TAG_REGEX="refs/tags/.*"
# The `create` event trigger doesn't support `branches` filters, so it's necessary to use Bash instead.
if [[ \
("${{ github.event_name }}" != "create" || \
Expand Down
0