Always restore the full repository for createrepo

Signed-off-by: Dorian Stoll <dorian.stoll@tmsp.io>
This commit is contained in:
Dorian Stoll 2020-01-24 00:22:32 +01:00
parent 8af62146dc
commit e269cf3f37
No known key found for this signature in database
GPG key ID: F1DACD02C619442A
2 changed files with 26 additions and 14 deletions

View file

@ -66,7 +66,7 @@ jobs:
steps:
- name: Install dependencies
run: |
dnf install -y createrepo_c git findutils
dnf install -y createrepo_c git findutils wget
- name: Checkout repository
uses: actions/checkout@v2
@ -76,6 +76,14 @@ jobs:
fetch-depth: 0
ref: master
- name: Unpack repository
run: |
cd fedora/f30
for blob in $(find . -name '*.blob'); do
wget https://github.com/linux-surface/linux-surface/releases/download/$(cat $blob)
done
- name: Download artifacts
uses: actions/download-artifact@v1
with:
@ -86,6 +94,10 @@ jobs:
GPG_KEY: ${{ secrets.SURFACE_GPG_KEY }}
GIT_REF: ${{ github.ref }}
run: |
for pkg in $(find fedora-30-latest -name '*.rpm'); do
echo "$GIT_TAG/$(basename $pkg)" > $pkg.blob
done
cp fedora-30-latest/* fedora/f30/
rm -r fedora-30-latest
@ -102,12 +114,6 @@ jobs:
# Parse git tag from ref
GIT_TAG=$(echo $GIT_REF | sed 's|^refs/tags/||g')
# Convert packages into references
for pkg in $(find . -name '*.rpm'); do
echo "$GIT_TAG/$(basename $pkg)" > $pkg.blob
rm $pkg
done
- name: Commit and push
uses: github-actions-x/commit@v2.3
with:

View file

@ -66,7 +66,7 @@ jobs:
steps:
- name: Install dependencies
run: |
dnf install -y createrepo_c git findutils
dnf install -y createrepo_c git findutils wget
- name: Checkout repository
uses: actions/checkout@v2
@ -76,6 +76,14 @@ jobs:
fetch-depth: 0
ref: master
- name: Unpack repository
run: |
cd fedora/f31
for blob in $(find . -name '*.blob'); do
wget https://github.com/linux-surface/linux-surface/releases/download/$(cat $blob)
done
- name: Download artifacts
uses: actions/download-artifact@v1
with:
@ -86,6 +94,10 @@ jobs:
GPG_KEY: ${{ secrets.SURFACE_GPG_KEY }}
GIT_REF: ${{ github.ref }}
run: |
for pkg in $(find fedora-31-latest -name '*.rpm'); do
echo "$GIT_TAG/$(basename $pkg)" > $pkg.blob
done
cp fedora-31-latest/* fedora/f31/
rm -r fedora-31-latest
@ -102,12 +114,6 @@ jobs:
# Parse git tag from ref
GIT_TAG=$(echo $GIT_REF | sed 's|^refs/tags/||g')
# Convert packages into references
for pkg in $(find . -name '*.rpm'); do
echo "$GIT_TAG/$(basename $pkg)" > $pkg.blob
rm $pkg
done
- name: Commit and push
uses: github-actions-x/commit@v2.3
with: