Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #78 from golemcloud/fix-ci
Browse files Browse the repository at this point in the history
Fix CI (install protoc for publish task)
  • Loading branch information
vigoo committed Mar 6, 2024
2 parents a488a32 + ce837be commit c8641de
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI
on:
push:
tags:
- 'v*.*.*'
- "v*.*.*"
branches:
- main
pull_request:
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
CI: true
run: cargo test
publish:
needs: [ build ]
needs: [build]
if: "startsWith(github.ref, 'refs/tags/v')"
runs-on: ubuntu-latest
steps:
Expand All @@ -75,6 +75,10 @@ jobs:
with:
toolchain: stable
override: true
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- id: get_version
uses: battila7/get-version-action@v2
- name: Publish crate
Expand Down

0 comments on commit c8641de

Please sign in to comment.