Bladeren bron

Fix generating the repo for Fedora

I swear I can think... Sometimes.

Signed-off-by: Dorian Stoll <dorian.stoll@tmsp.io>
Dorian Stoll 5 jaren geleden
bovenliggende
commit
37abfdd086
2 gewijzigde bestanden met toevoegingen van 6 en 6 verwijderingen
  1. 3 3
      .github/workflows/fedora-30.yml
  2. 3 3
      .github/workflows/fedora-31.yml

+ 3 - 3
.github/workflows/fedora-30.yml

@@ -94,6 +94,9 @@ jobs:
         GPG_KEY: ${{ secrets.SURFACE_GPG_KEY }}
         GIT_REF: ${{ github.ref }}
       run: |
+        # Parse git tag from ref
+        GIT_TAG=$(echo $GIT_REF | sed 's|^refs/tags/||g')
+
         for pkg in $(find fedora-30-latest -name '*.rpm'); do
           echo "$GIT_TAG/$(basename $pkg)" > $pkg.blob
         done
@@ -111,9 +114,6 @@ jobs:
         fi
         gpg --detach-sign --batch --no-tty --armor -u $GPG_KEY_ID repodata/repomd.xml
 
-        # Parse git tag from ref
-        GIT_TAG=$(echo $GIT_REF | sed 's|^refs/tags/||g')
-
     - name: Commit and push
       uses: github-actions-x/commit@v2.3
       with:

+ 3 - 3
.github/workflows/fedora-31.yml

@@ -94,6 +94,9 @@ jobs:
         GPG_KEY: ${{ secrets.SURFACE_GPG_KEY }}
         GIT_REF: ${{ github.ref }}
       run: |
+        # Parse git tag from ref
+        GIT_TAG=$(echo $GIT_REF | sed 's|^refs/tags/||g')
+
         for pkg in $(find fedora-31-latest -name '*.rpm'); do
           echo "$GIT_TAG/$(basename $pkg)" > $pkg.blob
         done
@@ -111,9 +114,6 @@ jobs:
         fi
         gpg --detach-sign --batch --no-tty --armor -u $GPG_KEY_ID repodata/repomd.xml
 
-        # Parse git tag from ref
-        GIT_TAG=$(echo $GIT_REF | sed 's|^refs/tags/||g')
-
     - name: Commit and push
       uses: github-actions-x/commit@v2.3
       with: