Skip to content

v2.9.4

v2.9.4 #154

Workflow file for this run

name: ci
on:
push:
branches: [main]
tags: ['v*']
pull_request:
branches: [main]
workflow_dispatch:
# Prevent writing to the repository using the CI token.
# Ref: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#permissions
permissions: read-all
jobs:
ci:
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v3
- name: Setup Go
if: success()
uses: actions/setup-go@v3
with:
go-version: 1.17.13
- name: Setup Node
if: success()
uses: actions/setup-node@v3
with:
node-version: 16
- name: Cache
uses: actions/cache@v3
with:
path: |
~/.tmp
.tmp
key: ${{ runner.os }}-protobuf-ts-ci-${{ hashFiles('Makefile') }}
restore-keys: |
${{ runner.os }}-protobuf-ts-ci-
- name: Install protoc
run: |
version=3.12.0
archive=protoc-${version}-linux-x86_64.zip
curl -O -L https://github.com/protocolbuffers/protobuf/releases/download/v${version}/${archive}
sudo unzip -d '/usr/local' ${archive} 'bin/*' 'include/*'
sudo chmod 755 /usr/local/bin/protoc
rm ${archive}
protoc --version
- name: Run make
run: make