-
-
Notifications
You must be signed in to change notification settings - Fork 18
29 lines (27 loc) · 688 Bytes
/
Copy pathrelease.yml
File metadata and controls
29 lines (27 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: Build Zip for Release
on:
push:
tags:
- '**'
jobs:
tag-zip:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 1
- name: Install gtext
run: sudo apt-get -y install gettext
- name: Build .mo files
run: |
cd .github/workflows
sh build_translations.sh
- name: Upload plugin
uses: actions/upload-artifact@v3
with:
name: overdrive-libby-plugin-${{ github.ref_name }}
path: |
calibre-plugin/
!calibre-plugin/translations/*.po
!calibre-plugin/translations/*.pot