We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e95ac4f + 1f890db commit f399c81Copy full SHA for f399c81
.github/workflows/actionlint.yml
@@ -0,0 +1,12 @@
1
+name: Lint GitHub Actions
2
+on:
3
+ push:
4
+ paths: ['.github/**']
5
+jobs:
6
+ actionlint:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ with:
11
+ show-progress: false
12
+ - uses: alphagov/govuk-infrastructure/.github/actions/actionlint@main
.github/workflows/ci.yml
@@ -83,7 +83,7 @@ jobs:
83
gem push "govuk_web_banners-${VERSION}.gem"
84
fi
85
86
- if ! git ls-remote --tags --exit-code origin v${VERSION}; then
87
- git tag v${VERSION}
+ if ! git ls-remote --tags --exit-code origin v"${VERSION}"; then
+ git tag v"${VERSION}"
88
git push --tags
89
0 commit comments