Skip to content

Commit

Permalink
Merge pull request #53 from vshn/change/release-master
Browse files Browse the repository at this point in the history
Also build artifacts for master
  • Loading branch information
glrf authored Nov 21, 2022
2 parents 05ff965 + de7e75a commit f0684ac
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
tags:
- "*"
branches:
- master

jobs:
dist:
Expand All @@ -26,7 +28,7 @@ jobs:
- name: Import GPG signing key
uses: crazy-max/ghaction-import-gpg@v5
with:
gpg-private-key: ${{ secrets.SIGNING_KEY }}
gpg_private_key: ${{ secrets.SIGNING_KEY }}
- name: Login to Quay.io
uses: docker/login-action@v2
with:
Expand All @@ -51,3 +53,18 @@ jobs:
args: release --release-notes .github/release-notes.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload deb
uses: actions/upload-artifact@v3
with:
name: floaty_linux_amd64.deb
path: dist/floaty_linux_amd64.deb
- name: Upload rpm
uses: actions/upload-artifact@v3
with:
name: floaty_linux_amd64.rpm
path: dist/floaty_linux_amd64.rpm
- name: Upload apk
uses: actions/upload-artifact@v3
with:
name: floaty_linux_amd64.apk
path: dist/floaty_linux_amd64.apk

0 comments on commit f0684ac

Please sign in to comment.