Skip to content

build(deps): bump github.com/celestiaorg/rsmt2d from 0.10.0 to 0.11.0 #132

build(deps): bump github.com/celestiaorg/rsmt2d from 0.10.0 to 0.11.0

build(deps): bump github.com/celestiaorg/rsmt2d from 0.10.0 to 0.11.0 #132

Workflow file for this run

name: CI and Release
on:
push:
branches:
- main
# Trigger on version tags
tags:
- 'v[0-9]+\.[0-9]+\.[0-9]+'
- 'v[0-9]+\.[0-9]+\.[0-9]+-rc(?:[0-9]+|\.[0-9]+)'
pull_request:
workflow_dispatch:
# Inputs the workflow accepts.
inputs:
version:
# Friendly description to be shown in the UI instead of 'name'
description: "Semver type of new version (major / minor / patch)"
# Input has to be provided for the workflow to run
required: true
type: choice
options:
- patch
- minor
- major
jobs:
lint:
uses: ./.github/workflows/lint.yml
with:
GO_VERSION: "1.20"
test:
uses: ./.github/workflows/test.yml
with:
GO_VERSION: "1.20"
# Make a release if this is a manually trigger job, i.e. workflow_dispatch
release:
needs: [lint, test]
runs-on: ubuntu-latest
if: ${{ github.event_name == 'workflow_dispatch' }}
permissions: "write-all"
steps:
- uses: actions/checkout@v4
- name: Version Release
uses: celestiaorg/.github/.github/actions/version-release@v0.2.3
with:
github-token: ${{secrets.GITHUB_TOKEN}}
version-bump: ${{inputs.version}}