Skip to content

Move file

Move file #4

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
build_and_deploy:
runs-on: [ubuntu-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.21'
- run: git reset --hard
- run: git clean -f -d
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser
version: latest
workdir: ./protoc-gen-rails
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}