diff options
author | Erik Reider <[email protected]> | 2022-11-15 08:51:08 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-11-15 02:51:08 -0500 |
commit | 546f56f873feb7342396b79b79eed85191f24b1b (patch) | |
tree | 5293c1fd7ab66a769fa86959712603cd43e3abc1 | |
parent | ffaab52752681c2734e208966526b167e3c59c56 (diff) |
AUR publish actions: Remove checkingout of tag (#42)
-rw-r--r-- | .github/workflows/AUR_publish.yml | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/.github/workflows/AUR_publish.yml b/.github/workflows/AUR_publish.yml index 0f3b520d..0d9efd9f 100644 --- a/.github/workflows/AUR_publish.yml +++ b/.github/workflows/AUR_publish.yml @@ -14,11 +14,6 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 0 - # Checks out the latest tag - - run: | - git stash save "Action stashing changes" - latestTag=$(git describe --abbrev=0 --tags) - git checkout $latestTag - name: Publish AUR Stable package uses: ulises-jeremias/github-actions-aur-publish@v1 @@ -42,9 +37,6 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 0 - # Checks out the the Master branch - - run: | - git checkout master - name: Publish AUR -git package uses: ulises-jeremias/github-actions-aur-publish@v1 |