mirror of
https://github.com/eosswedenorg/eosio-keygen-extras
synced 2026-06-17 05:10:02 +02:00
Initial commit (taken from eosio-keygen repo)
eosio-keygen commit: 2c9c3d2ed979b7a0d324303e746ab715e3c6abee
This commit is contained in:
commit
a26b8543d1
10 changed files with 96884 additions and 0 deletions
34
.github/workflows/package.yml
vendored
Normal file
34
.github/workflows/package.yml
vendored
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
name: Package
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [ created ]
|
||||
|
||||
jobs:
|
||||
# Debian package
|
||||
ubuntu:
|
||||
name: Package
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
|
||||
- name: Configure
|
||||
run: cmake -B build --config Release .
|
||||
|
||||
- name: Package
|
||||
id: package
|
||||
run: |
|
||||
cmake --build build --target package
|
||||
FILE=$(ls build/*.deb | head -1)
|
||||
echo "::set-output name=filename::$FILE"
|
||||
echo "::set-output name=name::$(basename $FILE)"
|
||||
|
||||
- name: Upload
|
||||
uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ github.event.release.upload_url }}
|
||||
asset_name: ${{ steps.package.outputs.name }}
|
||||
asset_path: ${{ steps.package.outputs.filename }}
|
||||
asset_content_type: application/x-deb
|
||||
Loading…
Add table
Add a link
Reference in a new issue