This commit is contained in:
nekohepott 2026-06-17 04:16:35 +03:00
parent 24fb2ffc55
commit 0b4c1cb72f
No known key found for this signature in database

View File

@ -32,22 +32,10 @@ jobs:
run: | run: |
tar -czvf gogofetch-${{ github.ref_name }}-linux-amd64.tar.gz gogofetch Makefile logos/ tar -czvf gogofetch-${{ github.ref_name }}-linux-amd64.tar.gz gogofetch Makefile logos/
- name: Create Release - name: Create Release and Upload Asset
uses: actions/create-release@v1 uses: https://codeberg.org/actions/release-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with: with:
tag_name: ${{ github.ref }} files: |
release_name: Release ${{ github.ref_name }} gogofetch-${{ github.ref_name }}-linux-amd64.tar.gz
draft: false title: "Release ${{ github.ref_name }}"
prerelease: false note: "Automated binary release for Arch Linux AUR"
- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./gogofetch-${{ github.ref_name }}-linux-amd64.tar.gz
asset_name: gogofetch-${{ github.ref_name }}-linux-amd64.tar.gz
asset_content_type: application/gzip