name: Create or update GitHub release on: workflow_dispatch: inputs: version: required: true description: Needs to match, exactly, the name of a milestone (NO v prefix) jobs: main: runs-on: ubuntu-latest steps: - name: Checkout Actions uses: actions/checkout@v3 with: repository: "grafana/grafana-github-actions" path: ./actions ref: main - name: Install Actions run: npm install --production --prefix ./actions - name: Run github release action uses: ./actions/github-release with: token: ${{secrets.GH_BOT_ACCESS_TOKEN}} metricsWriteAPIKey: ${{secrets.GRAFANA_MISC_STATS_API_KEY}}