Skip to content

Init github actions

Init github actions #1

Workflow file for this run

name: Release
on: workflow_dispatch
env:
FPM_OPTS: "-s dir --prefix '/usr' -n kvrocks --verbose -a native \
--config-files /usr/share/kvrocks/kvrocks.conf \
--description 'A distributed key value NoSQL database that uses RocksDB as storage engine and is compatible with Redis protocol' \
--url 'https://kvrocks.apache.org' --license 'Apache-2.0'"
jobs:
release-packages:

Check failure on line 12 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yaml

Invalid workflow file

You have an error in your yaml syntax on line 12
name: Release DEB Package
runs-on: ubuntu-20.04
steps:
uses: actions/[email protected]
with:
fetch-depth: 64
- name: Install Dependencies
run: |
sudo apt-get install -y git build-essential cmake libtool python3
- name: Set env variables
run: |
echo "VERSION=$(cat VERSION)" >> $GITHUB_ENV
echo "ITERATION=$(cat ITERATION)" >> $GITHUB_ENV
- name: Build
run: |
git clone -b v{{ env.VERSION }} https://github.com/apache/kvrocks kvrocks
cd kvrocks
./x.py build -DPORTABLE=1 -DCMAKE_BUILD_TYPE=Release -j $(nproc)
- name: Make release directory
mkdir release
mkdir release/bin release/share
mkdir release/share/kvrocks
cp kvrocks/build/kvrocks release/bin/
cp kvrocks/build/kvrocks2redis release/bin/
cp kvrocks/kvrocks.conf release/share/kvrocks
cp -r kvrocks/LICENSE kvrocks/NOTICE kvrocks/licenses release/share/kvrocks
cp kvrocks/utils/systemd/kvrocks.service release/share/kvrocks
- name: Package Deb
uses: bpicode/[email protected]
with:
fpm_args: './release'
fpm_opts: '-t deb -v {{ env.VERSION }} --iteration {{ env.ITERATION }} ${{ env.FPM_OPTS }}'
- name: Release
uses: softprops/action-gh-release@v1
with:
name: |
{{ env.VERSION }}-{{ env.ITERATION }}
files: |
./*.deb
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}