Skip to content

fix: go installation guide v2 reference #42

fix: go installation guide v2 reference

fix: go installation guide v2 reference #42

Workflow file for this run

name: generate packages
on:
push:
branches:
- main
jobs:
generate-packages:
name: build inside devcontainer
defaults:
run:
shell: bash
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
- name: Run protobuf compilation in devcontainer
uses: devcontainers/ci@v0.3
with:
push: never
runCmd: make clean; make build
- name: Commit generated code
uses: EndBug/add-and-commit@v9 # You can change this to use a specific version.
with:
# Add all changes to packages
add: "packages/*"
author_name: Packagebuilder Bot
default_author: github_actions
# The message for the commit.
# Default: 'Commit from GitHub Actions (name of the workflow)'
message: "build: update packages (automated)"