Skip to content

chore: bump to 1.5.1 #54

chore: bump to 1.5.1

chore: bump to 1.5.1 #54

Workflow file for this run

name: Release
# Controls when the workflow will run
on:
push:
tags:
- "*"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
# Runs a set of commands using the runners shell
- name: Detect version
run: echo "::set-output name=version::$(cat packages/cie-middleware/PKGBUILD | grep pkgver | cut -d\" -f2)"
id: version
- name: ccache
uses: hendrikmuhs/ccache-action@v1
- name: Build
run: |
docker run -v $(pwd)/.ccache:/ccache -v $(pwd):/project -e CCACHE_DIR=/ccache M0Rf30/yap-ubuntu-focal:latest build ubuntu-focal packages/deb
docker run -v $(pwd)/.ccache:/ccache -v $(pwd):/project -e CCACHE_DIR=/ccache M0Rf30/yap-ubuntu-focal:latest build ubuntu-focal packages
docker run -v $(pwd)/.ccache:/ccache -v $(pwd):/project -e CCACHE_DIR=/ccache M0Rf30/yap-rocky-8:latest build rocky-8 packages
mkdir artifacts_ci
sudo mv artifacts/*.deb artifacts_ci
sudo mv artifacts/x86_64/*.rpm artifacts_ci
for i in $(ls artifacts_ci/); do sha256sum artifacts_ci/$i >> artifacts_ci/SHA256SUMS; done
for i in $(ls artifacts_ci/x86_64/); do sha256sum artifacts_ci/x86_64/$i >> artifacts_ci/SHA256SUMS; done
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: "cie-middleware-${{ steps.version.outputs.version }}"
path: |
artifacts_ci/*.deb
artifacts_ci/x86_64/*.rpm
artifacts/SHA256SUMS
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "${{ steps.version.outputs.version }}"
prerelease: false
title: "cie-middleware-${{ steps.version.outputs.version }}"
files: |
artifacts_ci/*.deb
artifacts_ci/x86_64/*.rpm
artifacts_ci/SHA256SUMS