chore: Update ghcr.io/grafana/grafana-build-tools Docker tag to v1.47.0 #1228
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build | |
| on: | |
| push: | |
| tags: | |
| - 'v*.*.*' | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - '*' | |
| permissions: | |
| contents: none | |
| packages: none | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Ensure Dependencies | |
| run: | | |
| make deps | |
| ./scripts/enforce-clean | |
| - name: Lint | |
| run: make lint | |
| - name: Test | |
| run: make test | |
| - name: Build | |
| run: | | |
| git fetch origin --tags | |
| git status --porcelain --untracked-files=no | |
| git diff --no-ext-diff --quiet | |
| ./scripts/version | |
| make build |