Skip to content

Release 2.4.3 (#60) #36

Release 2.4.3 (#60)

Release 2.4.3 (#60) #36

Workflow file for this run

name: Publish
on:
push:
branches: [master]
tags: ['*']
jobs:
publish-scm-1:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: tarantool/rocks.tarantool.org/github-action@master
with:
auth: ${{ secrets.ROCKS_AUTH }}
files: membership-scm-1.rockspec
publish-tag:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-20.04
env:
CMAKE_LDOC_FIND_REQUIRED: 'YES'
steps:
- uses: actions/checkout@v3
- uses: tarantool/setup-tarantool@v2
with:
tarantool-version: '2.5'
# Setup ldoc
- run: tarantoolctl 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: tarantoolctl rocks new_version --tag ${{ env.TAG }}
- run: tarantoolctl rocks install membership-${{ env.TAG }}-1.rockspec
- run: tarantoolctl rocks pack membership ${{ env.TAG }}
- uses: tarantool/rocks.tarantool.org/github-action@master
with:
auth: ${{ secrets.ROCKS_AUTH }}
files: |
membership-${{ env.TAG }}-1.rockspec
membership-${{ env.TAG }}-1.all.rock