|
1 |
| -# This GitHub Action automates the process of building Grafana plugins. |
2 |
| -# (For more information, see https://github.com/grafana/plugin-actions/blob/main/build-plugin/README.md) |
3 |
| -name: Release |
4 |
| - |
5 | 1 | on:
|
6 | 2 | push:
|
7 |
| - tags: |
8 |
| - - 'v*' # Run workflow on version tags, e.g. v1.0.0. |
9 |
| - |
10 |
| -permissions: read-all |
| 3 | + branches: |
| 4 | + - main |
11 | 5 |
|
| 6 | +name: Release |
12 | 7 | jobs:
|
13 |
| - release: |
14 |
| - permissions: |
15 |
| - contents: write |
| 8 | + release-please: |
16 | 9 | runs-on: ubuntu-latest
|
| 10 | + env: |
| 11 | + GRAFANA_ACCESS_POLICY_TOKEN: ${{ secrets.GRAFANA_ACCESS_POLICY_TOKEN }} |
17 | 12 | steps:
|
| 13 | + - uses: google-github-actions/release-please-action@v4 |
| 14 | + id: release |
| 15 | + with: |
| 16 | + release-type: simple |
18 | 17 | - uses: actions/checkout@v4
|
19 |
| - - uses: grafana/plugin-actions/build-plugin@release |
20 |
| - # Uncomment to enable plugin signing |
21 |
| - # (For more info on how to generate the access policy token see https://grafana.com/developers/plugin-tools/publish-a-plugin/sign-a-plugin#generate-an-access-policy-token) |
22 |
| - #with: |
23 |
| - # Make sure to save the token in your repository secrets |
24 |
| - #policy_token: $ |
25 |
| - # Usage of GRAFANA_API_KEY is deprecated, prefer `policy_token` option above |
26 |
| - #grafana_token: $ |
| 18 | + - name: Tag major and minor versions |
| 19 | + if: ${{ steps.release.outputs.release_created }} |
| 20 | + run: | |
| 21 | + git config user.name github-actions[bot] |
| 22 | + git config user.email 41898282+github-actions[bot]@users.noreply.github.com |
| 23 | + git tag -d v${{ steps.release.outputs.major }} || true |
| 24 | + git tag -d v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true |
| 25 | + git push origin :v${{ steps.release.outputs.major }} || true |
| 26 | + git push origin :v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true |
| 27 | + git tag -a v${{ steps.release.outputs.major }} -m "Release v${{ steps.release.outputs.major }}" |
| 28 | + git tag -a v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} -m "Release v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}" |
| 29 | + git push origin v${{ steps.release.outputs.major }} |
| 30 | + git push origin v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} |
| 31 | +
|
| 32 | + - name: Setup Node.js environment |
| 33 | + if: ${{ steps.release.outputs.release_created }} |
| 34 | + uses: actions/setup-node@v4 |
| 35 | + with: |
| 36 | + node-version: '20' |
| 37 | + cache: 'npm' |
| 38 | + |
| 39 | + - name: Install dependencies |
| 40 | + if: ${{ steps.release.outputs.release_created }} |
| 41 | + run: npm ci |
| 42 | + |
| 43 | + - name: Check types |
| 44 | + if: ${{ steps.release.outputs.release_created }} |
| 45 | + run: npm run typecheck |
| 46 | + |
| 47 | + - name: Lint |
| 48 | + if: ${{ steps.release.outputs.release_created }} |
| 49 | + run: npm run lint |
| 50 | + |
| 51 | + - name: Unit tests |
| 52 | + if: ${{ steps.release.outputs.release_created }} |
| 53 | + run: npm run test:ci |
| 54 | + |
| 55 | + - name: Build frontend |
| 56 | + if: ${{ steps.release.outputs.release_created }} |
| 57 | + run: npm run build |
| 58 | + |
| 59 | + - name: Check for backend |
| 60 | + if: ${{ steps.release.outputs.release_created }} |
| 61 | + id: check-for-backend |
| 62 | + run: | |
| 63 | + if [ -f "Magefile.go" ] |
| 64 | + then |
| 65 | + echo "has-backend=true" >> $GITHUB_OUTPUT |
| 66 | + fi |
| 67 | +
|
| 68 | + - name: Setup Go environment |
| 69 | + if: steps.check-for-backend.outputs.has-backend == 'true' && steps.release.outputs.release_created |
| 70 | + uses: actions/setup-go@v5 |
| 71 | + with: |
| 72 | + go-version: '1.21' |
| 73 | + |
| 74 | + - name: Test backend |
| 75 | + if: steps.check-for-backend.outputs.has-backend == 'true' && steps.release.outputs.release_created |
| 76 | + uses: magefile/mage-action@v3 |
| 77 | + with: |
| 78 | + version: latest |
| 79 | + args: coverage |
| 80 | + |
| 81 | + - name: Build backend |
| 82 | + if: steps.check-for-backend.outputs.has-backend == 'true' && steps.release.outputs.release_created |
| 83 | + uses: magefile/mage-action@v3 |
| 84 | + with: |
| 85 | + version: latest |
| 86 | + args: buildAll |
| 87 | + |
| 88 | + - name: Check for E2E |
| 89 | + id: check-for-e2e |
| 90 | + if: ${{ steps.release.outputs.release_created }} |
| 91 | + run: | |
| 92 | + if [ -d "cypress" ] |
| 93 | + then |
| 94 | + echo "has-e2e=true" >> $GITHUB_OUTPUT |
| 95 | + fi |
| 96 | +
|
| 97 | + - name: Start grafana docker |
| 98 | + if: steps.check-for-e2e.outputs.has-e2e == 'true' && steps.release.outputs.release_created |
| 99 | + run: docker-compose up -d |
| 100 | + |
| 101 | + - name: Run e2e tests |
| 102 | + if: steps.check-for-e2e.outputs.has-e2e == 'true' && steps.release.outputs.release_created |
| 103 | + run: npm run e2e |
| 104 | + |
| 105 | + - name: Stop grafana docker |
| 106 | + if: steps.check-for-e2e.outputs.has-e2e == 'true' && steps.release.outputs.release_created |
| 107 | + run: docker-compose down |
| 108 | + |
| 109 | + - name: Archive E2E output |
| 110 | + uses: actions/upload-artifact@v4 |
| 111 | + if: steps.check-for-e2e.outputs.has-e2e == 'true' && steps.run-e2e-tests.outcome != 'success' && steps.release.outputs.release_created |
| 112 | + with: |
| 113 | + name: cypress-videos |
| 114 | + path: cypress/videos |
| 115 | + retention-days: 5 |
| 116 | + |
| 117 | + - name: Sign plugin |
| 118 | + run: npm run sign |
| 119 | + if: ${{ env.GRAFANA_ACCESS_POLICY_TOKEN != '' }} && steps.release.outputs.release_created |
| 120 | + |
| 121 | + - name: Get plugin metadata |
| 122 | + if: steps.release.outputs.release_created |
| 123 | + id: metadata |
| 124 | + run: | |
| 125 | + sudo apt-get install jq |
| 126 | +
|
| 127 | + export GRAFANA_PLUGIN_ID=$(cat dist/plugin.json | jq -r .id) |
| 128 | + export GRAFANA_PLUGIN_VERSION=$(cat dist/plugin.json | jq -r .info.version) |
| 129 | + export GRAFANA_PLUGIN_ARTIFACT=${GRAFANA_PLUGIN_ID}-${GRAFANA_PLUGIN_VERSION}.zip |
| 130 | +
|
| 131 | + echo "plugin-id=${GRAFANA_PLUGIN_ID}" >> $GITHUB_OUTPUT |
| 132 | + echo "plugin-version=${GRAFANA_PLUGIN_VERSION}" >> $GITHUB_OUTPUT |
| 133 | + echo "archive=${GRAFANA_PLUGIN_ARTIFACT}" >> $GITHUB_OUTPUT |
| 134 | +
|
| 135 | + - name: Log in to the Container registry |
| 136 | + if: steps.release.outputs.release_created |
| 137 | + uses: docker/login-action@v3 |
| 138 | + with: |
| 139 | + registry: ${{ env.REGISTRY }} |
| 140 | + username: ${{ github.actor }} |
| 141 | + password: ${{ secrets.GITHUB_TOKEN }} |
| 142 | + |
| 143 | + - name: Build and push Docker image |
| 144 | + if: steps.release.outputs.release_created |
| 145 | + run: | |
| 146 | + docker build -f .config/Dockerfile -t ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} . |
| 147 | + docker push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}} |
0 commit comments