-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (38 loc) · 1.17 KB
/
publish-subsplit.yml
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
30
31
32
33
34
35
36
37
38
39
---
name: Sub-Split Publishing
on:
push:
branches:
- main
create:
tags:
- '1.*'
delete:
tags:
- '1.*'
jobs:
publish_subsplits:
runs-on: ubuntu-latest
name: Publish package sub-splits
steps:
- uses: actions/checkout@v3
with:
fetch-depth: '0'
persist-credentials: 'false'
- uses: frankdejonge/[email protected]
with:
authentication: 'nyamsprod:${{ secrets.PERSONAL_ACCESS_TOKEN }}'
user_name: 'ignace nyamagana butera'
user_email: '[email protected]'
- name: Cache splitsh-lite
id: splitsh-cache
uses: actions/cache@v3
with:
path: './.splitsh'
key: '${{ runner.os }}-splitsh'
- uses: frankdejonge/[email protected]
with:
source-branch: 'main'
config-path: './config.subsplit-publish.json'
splitsh-path: './.splitsh/splitsh-lite'
splitsh-version: 'v1.0.1'