Skip to content

GitHub Action: Trigger Go module indexing #2

GitHub Action: Trigger Go module indexing

GitHub Action: Trigger Go module indexing #2

Workflow file for this run

name: Go Module Index
on:
workflow_dispatch:
push:
permissions: {}
jobs:
go-mod-index:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5'
with:
cache: false
- run: echo "github.ref_name ${{ github.ref_name }}"
- run: echo "github.ref ${{ github.ref }}"
- run: echo "github.sha ${{ github.sha }}"
- run: echo "github.ref_type ${{ github.ref_type }}"
- run: echo "github.repository ${{ github.repository }}"
- run: echo "github.repositoryUrl ${{ github.repositoryUrl }}"