mirror of https://github.com/dswd/vpncloud.git
Compare commits
2 Commits
7e55ec5df6
...
bef99162fe
Author | SHA1 | Date |
---|---|---|
Dennis Schwerdel | bef99162fe | |
Dennis Schwerdel | 24c48e2ef2 |
|
@ -1,59 +0,0 @@
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types: [created]
|
|
||||||
name: Build packages
|
|
||||||
jobs:
|
|
||||||
deb:
|
|
||||||
name: "Build deb packages"
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- name: Run builder
|
|
||||||
uses: ./.github/actions/build-deb
|
|
||||||
- name: Archive artifacts
|
|
||||||
uses: actions/upload-artifact@v1
|
|
||||||
with:
|
|
||||||
name: packages
|
|
||||||
path: dist
|
|
||||||
- name: Upload artifacts
|
|
||||||
uses: skx/github-action-publish-binaries@master
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
args: 'dist/*.deb'
|
|
||||||
rpm:
|
|
||||||
name: "Build rpm packages"
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- name: Run builder
|
|
||||||
uses: ./.github/actions/build-rpm
|
|
||||||
- name: Archive artifacts
|
|
||||||
uses: actions/upload-artifact@v1
|
|
||||||
with:
|
|
||||||
name: packages
|
|
||||||
path: dist
|
|
||||||
- name: Upload artifacts
|
|
||||||
uses: skx/github-action-publish-binaries@master
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
args: 'dist/*.rpm'
|
|
||||||
static:
|
|
||||||
name: "Build static binaries"
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- name: Run builder
|
|
||||||
uses: ./.github/actions/build-static
|
|
||||||
- name: Archive artifacts
|
|
||||||
uses: actions/upload-artifact@v1
|
|
||||||
with:
|
|
||||||
name: packages
|
|
||||||
path: dist
|
|
||||||
- name: Upload artifacts
|
|
||||||
uses: skx/github-action-publish-binaries@master
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
args: 'dist/*'
|
|
13
maskfile.md
13
maskfile.md
|
@ -159,6 +159,18 @@ $MASK build-armel-packages
|
||||||
$MASK build-armel-static
|
$MASK build-armel-static
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## sign
|
||||||
|
|
||||||
|
> Sign the packages.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
set -e
|
||||||
|
VERSION=$(grep -e '^version =' Cargo.toml | sed -e 's/version = "\(.*\)"/\1/')
|
||||||
|
cd dist
|
||||||
|
sha256sum vpncloud_${VERSION}_static_* vpncloud_${VERSION}*.rpm vpncloud_${VERSION}*.deb > vpncloud_${VERSION}_SHA256SUMS.txt
|
||||||
|
gpg --armor --output vpncloud_${VERSION}_SHA256SUMS.txt.asc --detach-sig vpncloud_${VERSION}_SHA256SUMS.txt
|
||||||
|
```
|
||||||
|
|
||||||
## test
|
## test
|
||||||
|
|
||||||
> Test the project.
|
> Test the project.
|
||||||
|
@ -180,6 +192,7 @@ VERSION=$(grep -e '^version =' Cargo.toml | sed -e 's/version = "\(.*\)"/\1/')
|
||||||
nano CHANGELOG.md
|
nano CHANGELOG.md
|
||||||
nano assets/changelog.txt
|
nano assets/changelog.txt
|
||||||
$MASK build
|
$MASK build
|
||||||
|
$MASK sign
|
||||||
git commit -a
|
git commit -a
|
||||||
cargo publish
|
cargo publish
|
||||||
git tag v$VERSION
|
git tag v$VERSION
|
||||||
|
|
Loading…
Reference in New Issue