Skip to content

Commit

Permalink
Fix linter path
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusolsson committed Sep 6, 2021
1 parent 0885f62 commit 79da3f9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release
on:
push:
tags:
- "v*.*.*" # Run workflow on version tags, e.g. v1.0.0.
- 'v*.*.*' # Run workflow on version tags, e.g. v1.0.0.

jobs:
release:
Expand All @@ -15,12 +15,12 @@ jobs:
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: "14.x"
node-version: '14.x'

- name: Setup Go environment
uses: actions/setup-go@v2
with:
go-version: "1.15"
go-version: '1.15'

- name: Get yarn cache directory path
id: yarn-cache-dir-path
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
- name: Lint plugin
run: |
git clone https://github.com/grafana/plugin-validator
pushd ./plugin-validator/cmd/plugincheck
pushd ./plugin-validator/pkg/cmd/plugincheck
go install
popd
plugincheck ${{ steps.metadata.outputs.archive }}
Expand Down

0 comments on commit 79da3f9

Please sign in to comment.