mirror of
https://github.com/Leseratte10/acsm-calibre-plugin.git
synced 2024-11-16 19:56:11 +06:00
23 lines
438 B
YAML
23 lines
438 B
YAML
|
name: Build binaries
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
|
||
|
jobs:
|
||
|
build-linux:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Compile
|
||
|
run: |
|
||
|
DOCKER_BUILDKIT=1 docker build -o final .
|
||
|
cp calibre-plugin/* final/stretch/
|
||
|
|
||
|
- name: Upload
|
||
|
uses: actions/upload-artifact@v2
|
||
|
with:
|
||
|
name: linux
|
||
|
path: |
|
||
|
final/stretch/
|
||
|
|