Skip to content

Commit

Permalink
workflows: handle unstable release issues (#19)
Browse files Browse the repository at this point in the history
* workflows: handle unstable release issues
* workflows: fix missing deps for centos 7

Signed-off-by: Patrick Stephens <pat@calyptia.com>
  • Loading branch information
patrick-stephens committed Oct 3, 2022
1 parent a9a6115 commit 8c0ddd8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Set up base image dependencies
run: |
yum -y update && \
yum install -y ca-certificates cmake gcc gcc-c++ git make wget && \
yum install -y ca-certificates cmake curl-devel gcc gcc-c++ git make wget && \
wget http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm && \
rpm -ivh epel-release-latest-7.noarch.rpm && \
yum install -y cmake3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,11 @@ jobs:

- name: Unstable release on push to master to make it easier to download
uses: pyTooling/Actions/releaser@r0
continue-on-error: true
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag: 'unstable'
rm: true
files: |
artifacts/**/*
Expand Down

0 comments on commit 8c0ddd8

Please sign in to comment.