-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
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@v2 | ||
|
||
# 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 packagefoundation/yap-ubuntu-focal:latest build ubuntu-focal packages | ||
mkdir artifacts | ||
sudo mv packages/cryptopp/artifacts/*.deb artifacts | ||
sudo mv packages/cie-middleware/artifacts/*.deb artifacts | ||
for i in $(ls artifacts/); do sha256sum artifacts/$i >> artifacts/SHA256SUMS; done | ||
- name: Archive production artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: "cie-middleware-${{ steps.version.outputs.version }}" | ||
path: | | ||
artifacts/*.deb | ||
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/*.deb | ||
artifacts/SHA256SUMS |
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