Add mark_left
function (#68)
#44
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |