@@ -382,43 +382,20 @@ jobs:
382
382
steps :
383
383
- name : Check out code base
384
384
uses : actions/checkout@v3
385
- with :
386
- token : ${{ secrets.GH_PAT }}
387
- repository : ' wabarc/apt-repo'
388
385
389
386
- name : Download artifact
390
387
uses : actions/download-artifact@v2
391
388
with :
392
389
name : ${{ env.PRODUCT }}
393
390
path : ${{ env.PRODUCT }}
394
391
395
- - name : Import GPG key
396
- id : gpg
397
- uses : crazy-max/ghaction-import-gpg@34ea557550c84ea665cae5c61c3b084feac7e042 # v5.0.0
398
- with :
399
- gpg_private_key : ${{ secrets.GPG_PRIVATE_KEY }}
400
-
401
- - name : GPG user IDs
402
- run : |
403
- echo "fingerprint: ${{ steps.gpg.outputs.fingerprint }}"
404
- echo "keyid: ${{ steps.gpg.outputs.keyid }}"
405
- echo "name: ${{ steps.gpg.outputs.name }}"
406
- echo "email: ${{ steps.gpg.outputs.email }}"
407
- gpg --armor --export-secret-keys > priv.asc
408
-
409
- - name : Build APT Repository
410
- if : ${{ steps.gpg.outputs.keyid != '' }}
411
- run : |
412
- cp ./${{ env.PRODUCT }}/*.deb .
413
- make build
392
+ - name : List generated files
393
+ run : ls -l ./${{ env.PRODUCT }}/*.deb
414
394
415
395
- name : Publish APT Repository
416
- if : ${{ steps.gpg.outputs.keyid != '' }}
417
- run : |
418
- git config --local user.name 'github-actions[bot]'
419
- git config --local user.email '41898282+github-actions[bot]@users.noreply.github.com'
420
- make publish
421
- rm -f priv.asc
396
+ env :
397
+ FURY_TOKEN : ${{ secrets.FURY_TOKEN }}
398
+ run :
for f in ./${{ env.PRODUCT }}/*.deb; do curl --fail -F package=@$f https://[email protected] /wabarc/; done
422
399
423
400
release-rpm :
424
401
if : github.repository == 'wabarc/wayback'
@@ -428,26 +405,20 @@ jobs:
428
405
steps :
429
406
- name : Check out code base
430
407
uses : actions/checkout@v3
431
- with :
432
- token : ${{ secrets.GH_PAT }}
433
- repository : ' wabarc/rpm-repo'
434
408
435
409
- name : Download artifact
436
410
uses : actions/download-artifact@v2
437
411
with :
438
412
name : ${{ env.PRODUCT }}
439
413
path : ${{ env.PRODUCT }}
440
414
441
- - name : Build RPM Repository
442
- run : |
443
- cp ./${{ env.PRODUCT }}/*.rpm ./x86_64
444
- make build
415
+ - name : List generated files
416
+ run : ls -l ./${{ env.PRODUCT }}/*.rpm
445
417
446
418
- name : Publish RPM Repository
447
- run : |
448
- git config --local user.name 'github-actions[bot]'
449
- git config --local user.email '41898282+github-actions[bot]@users.noreply.github.com'
450
- make publish
419
+ env :
420
+ FURY_TOKEN : ${{ secrets.FURY_TOKEN }}
421
+ run :
for f in ./${{ env.PRODUCT }}/*.rpm; do curl --fail -F package=@$f https://[email protected] /wabarc/; done
451
422
452
423
notification :
453
424
if : github.repository == 'wabarc/wayback'
0 commit comments