@slashgear/gdpr-cookie-scanner 2.0.2 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/release.yml +3 -2
- package/CHANGELOG.md +8 -0
- package/package.json +1 -1
|
@@ -49,6 +49,7 @@ jobs:
|
|
|
49
49
|
run: |
|
|
50
50
|
VERSION=$(echo '${{ steps.changesets.outputs.publishedPackages }}' | jq -r '.[0].version')
|
|
51
51
|
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
|
52
|
+
echo "image=ghcr.io/$(echo '${{ github.repository }}' | tr '[:upper:]' '[:lower:]')" >> $GITHUB_OUTPUT
|
|
52
53
|
|
|
53
54
|
- name: Log in to GitHub Container Registry
|
|
54
55
|
if: steps.changesets.outputs.published == 'true'
|
|
@@ -65,5 +66,5 @@ jobs:
|
|
|
65
66
|
context: .
|
|
66
67
|
push: true
|
|
67
68
|
tags: |
|
|
68
|
-
|
|
69
|
-
|
|
69
|
+
${{ steps.version.outputs.image }}:latest
|
|
70
|
+
${{ steps.version.outputs.image }}:${{ steps.version.outputs.version }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @slashgear/gdpr-cookie-scanner
|
|
2
2
|
|
|
3
|
+
## 2.0.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- cc8b0dc: Fix Docker image tags using lowercase repository name.
|
|
8
|
+
|
|
9
|
+
`github.repository` can contain uppercase letters (e.g. `Slashgear/gdpr-cookie-scanner`), which is rejected by the OCI registry spec. The image name is now lowercased via `tr '[:upper:]' '[:lower:]'` before being passed to `docker/build-push-action`.
|
|
10
|
+
|
|
3
11
|
## 2.0.2
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|