Update release.yml #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: "*" | |
paths: | |
# trigger release workflow only if this file changed | |
- .github/workflows/release.yml | |
jobs: | |
get-version: | |
runs-on: ubuntu-latest | |
outputs: | |
version: ${{ steps.version.outputs.version }} | |
steps: | |
- id: version | |
run: | | |
echo "Tag name from GITHUB_REF_NAME: $GITHUB_REF_NAME" | |
echo "Tag name from github.ref_name: ${{ github.ref_name }}" | |
echo "version=${{ github.ref_name }}" >> $GITHUB_OUTPUT | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Packages | |
run: | | |
sudo apt-get update | |
sudo apt upgrade -y | |
sudo apt-get install build-essential libwayland-dev libarchive-tools -y | |
- name: Get submodules | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Clean | |
run: make clean | |
- name: Compile | |
run: make DEBUG=0 GUI_MODE=0 | |
- name: Make Release | |
run: make dist DEBUG=0 && mv ./customfetch-*.tar.gz ./customfetch.tar.gz | |
- name: Upload to github artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: customfetch | |
path: customfetch.tar.gz | |
build-gui: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Packages | |
run: | | |
sudo apt-get update | |
sudo apt upgrade -y | |
sudo apt-get install build-essential libwayland-dev libgtk-3-dev pkg-config libgtkmm-3.0-dev libarchive-tools -y | |
- name: Get submodules | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Clean | |
run: make clean | |
- name: Compile | |
run: make DEBUG=0 GUI_MODE=1 | |
- name: Make Release | |
run: make dist DEBUG=0 GUI_MODE=1 && mv ./customfetch-*.tar.gz ./customfetch-gui.tar.gz | |
- name: Upload to github artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: customfetch-gui | |
path: customfetch-gui.tar.gz | |
release: | |
name: Create GitHub Release | |
needs: [build, build-gui, get-version] | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
outputs: | |
release-url: ${{ steps.create-release.outputs.upload_url }} | |
steps: | |
- name: Create Release | |
id: create-release | |
uses: ncipollo/[email protected] | |
with: | |
tag: ${{ needs.get-version.outputs.version }} | |
name: customfetch ${{ needs.get-version.outputs.version }} | |
draft: false | |
allowUpdates: true | |
prerelease: false | |
token: ${{ secrets.GITHUB_TOKEN }} | |
upload-binaries: | |
name: Upload binaries to Githib relase | |
runs-on: ubuntu-latest | |
needs: [release, get-version] | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/download-artifact@v4 | |
- uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ needs.release.outputs.release-url }} | |
asset_path: ./customfetch.tar.gz | |
asset_name: customfetch-${{ needs.get-version.outputs.version }}.tar.gz | |
asset_content_type: application/tar+gz | |
- uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ needs.release.outputs.release-url }} | |
asset_path: ./customfetch-gui.tar.gz | |
asset_name: customfetch-${{ needs.get-version.outputs.version }}.tar.gz | |
asset_content_type: application/tar+gz |