mirror of
https://github.com/Leseratte10/acsm-calibre-plugin.git
synced 2024-11-16 19:56:11 +06:00
24 lines
423 B
YAML
24 lines
423 B
YAML
name: Build binaries
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build-linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Compile
|
|
run: |
|
|
./bundle_calibre_plugin.sh
|
|
|
|
- name: Upload
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: linux
|
|
path: |
|
|
calibre-plugin.zip
|
|
libgourou_bundle_raw.tar.xz
|
|
|