-
Notifications
You must be signed in to change notification settings - Fork 29
81 lines (75 loc) · 2.47 KB
/
publish.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name: Publish
on:
push:
branches: [master]
tags: ["*"]
jobs:
version-check:
# We need this job to run only on push with tag.
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }}
runs-on: ubuntu-20.04
steps:
- name: Check module version
uses: tarantool/actions/check-module-version@master
with:
module-name: "cartridge"
publish-scm-1:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: tarantool/rocks.tarantool.org/github-action@master
with:
auth: ${{ secrets.ROCKS_AUTH }}
files: cartridge-scm-1.rockspec
publish-tag:
if: startsWith(github.ref, 'refs/tags/')
needs: version-check
runs-on: ubuntu-20.04
env:
CMAKE_LDOC_FIND_REQUIRED: "YES"
CMAKE_SPHINX_FIND_REQUIRED: "YES"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "16.8.0"
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- run: python -m pip install -r rst/requirements.txt
- uses: tarantool/setup-tarantool@v3
with:
tarantool-version: "2.5"
- name: Setup tt
run: |
curl -L https://tarantool.io/release/2/installer.sh | sudo bash
sudo apt install -y tt
tt version
- run: tt rocks install ldoc
--server=https://tarantool.github.io/LDoc/
- run: echo $PWD/.rocks/bin >> $GITHUB_PATH
# Make a release
- run: echo TAG=${GITHUB_REF##*/} >> $GITHUB_ENV
- run: tt rocks new_version --tag ${{ env.TAG }}
- run: tt rocks make cartridge-${{ env.TAG }}-1.rockspec
- run: |
mkdir -p check-version
# get away from repo sources because `cartridge/VERSION.lua`
# always returns 'scm-1' and assertion fails
pushd check-version
tarantool -l cartridge <<SCRIPT
assert(cartridge.VERSION == '${{ env.TAG }}',
'version mismatch' ..
'\nexpected: ' .. '${{ env.TAG }}' ..
'\n actual: ' .. cartridge.VERSION
)
SCRIPT
popd
- run: tt rocks pack cartridge ${{ env.TAG }}
- uses: tarantool/rocks.tarantool.org/github-action@master
with:
auth: ${{ secrets.ROCKS_AUTH }}
files: |
cartridge-${{ env.TAG }}-1.rockspec
cartridge-${{ env.TAG }}-1.all.rock