Skip to content

Commit

Permalink
add GH release action (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
Belissimo-T committed Dec 3, 2023
1 parent 3dd6b45 commit b460ef0
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: "pre-release"

on:
push:
branches:
- "master"

jobs:
pre-release:
name: "Pre Release"
runs-on: "ubuntu-latest"

steps:
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.11"

- name: Install dependencies to build gRPC stubs
run: |
python -m pip install --upgrade pip
pip install -r seekers/grpc/requirements-dev.txt
- name: "Build gRPC stubs"
run: |
./seekers/grpc/compile_protos.sh
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Development Build"

0 comments on commit b460ef0

Please sign in to comment.