Use podman for gh #6
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
on: | |
push: | |
tags: | |
- 'v*' | |
name: Release | |
env: | |
IMAGE_NAME: libplasma | |
jobs: | |
build: | |
name: Release | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install dependencies with buildah | |
run: | | |
ctr=$(buildah from "archlinux") | |
buildah config \ | |
--cmd /usr/bin/bash $ctr | |
buildah run "$ctr" -- pacman \ | |
--noconfirm -Syu | |
buildah run "$ctr" -- pacman \ | |
--noconfirm -Sy \ | |
libplasma cmake | |
buildah commit -- "$ctr" "$IMAGE_NAME" | |
buildah rm "$ctr" | |
- name: Build project using podman | |
id: build_project | |
run: | | |
VERSION=${GITHUB_REF_NAME#v} | |
echo "path=Luna3-${VERSION}.plasmoid" >> "$GITHUB_OUTPUT" | |
sed -Eie 's#"Version": "[0-9.]+",#"Version": "${{ github.ref }}",#' package/metadata.json | |
sed -Eie 's#refs/tags/v##' package/metadata.json | |
podman run \ | |
--mount type=bind,src=${GITHUB_WORKSPACE},dst=/root/,Z \ | |
"$IMAGE_NAME" \ | |
make plasmoid | |
- name: Create Release | |
id: create_release | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
title: Release ${{ github.ref_name }} | |
tag: ${{ github.ref_name }} | |
run: gh release create ${tag} -t "${title}" | |
- name: Upload Release Asset | |
id: upload-release-asset | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
tag: ${{ github.ref_name }} | |
asset_path: ${{ steps.build_project.outputs.path }} | |
run: gh release upload ${tag} "${asset_path}" | |