Skip to content

Commit

Permalink
Moved tag request location.
Browse files Browse the repository at this point in the history
  • Loading branch information
DemiRom committed Feb 24, 2024
1 parent 0b8ac6c commit 388fc8b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/earbug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Get Version Name
id: versionTag
run: |
LAST_TAGGED_COMMIT=$(git rev-list --tags --max-count=1)
TAG=$(git describe --tags $LAST_TAGGED_COMMIT)
echo "tag=$TAG" >> $GITHUB_OUTPUT
- name: Install Qt6
run: |
sudo apt update
Expand Down Expand Up @@ -122,13 +129,6 @@ jobs:
# cd ./build/
# QT_QPA_PLATFORM=offscreen ctest -C release -VV

- name: Get Version Name
id: versionTag
run: |
LAST_TAGGED_COMMIT=$(git rev-list --tags --max-count=1)
TAG=$(git describe --tags $LAST_TAGGED_COMMIT)
echo "tag=$TAG" >> $GITHUB_OUTPUT
- name: Create release artifact
if: "!contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[ci skip]')"
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 388fc8b

Please sign in to comment.