forked from tarantool/luatest
-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (45 loc) · 1.59 KB
/
push_rockspec.yaml
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
name: Push rockspec
on:
push:
branches:
- master
tags:
- '*'
env:
ROCK_NAME: "luatest"
jobs:
push-scm-rockspec:
runs-on: [ ubuntu-latest ]
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@master
- uses: tarantool/rocks.tarantool.org/github-action@master
with:
auth: ${{ secrets.ROCKS_AUTH }}
files: ${{ env.ROCK_NAME }}-scm-1.rockspec
push-tagged-rockspec:
runs-on: [ ubuntu-latest ]
if: startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/checkout@master
- uses: tarantool/setup-tarantool@v1
with:
tarantool-version: '2.5'
# https://stackoverflow.com/questions/58177786/get-the-current-pushed-tag-in-github-actions
- name: Set env
run: echo "GIT_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- run: tarantoolctl rocks new_version --tag ${GIT_TAG}
- run: tarantoolctl rocks make ${{ env.ROCK_NAME }}-${GIT_TAG}-1.rockspec
# - name: Create release rockspec
# run: |
# sed \
# -e "s/branch = '.\+'/tag = '${GIT_TAG}'/g" \
# -e "s/version = '.\+'/version = '${GIT_TAG}-1'/g" \
# ${{ env.ROCK_NAME }}-scm-1.rockspec > ${{ env.ROCK_NAME }}-${GIT_TAG}-1.rockspec
- run: tarantoolctl rocks pack ${{ env.ROCK_NAME }} ${GIT_TAG}
- uses: tarantool/rocks.tarantool.org/github-action@master
with:
auth: ${{ secrets.ROCKS_AUTH }}
files: |
${{ env.ROCK_NAME }}-${GIT_TAG}-1.rockspec
${{ env.ROCK_NAME }}-${GIT_TAG}-1.all.rock