@blitzbrowser/blitzbrowser 1.1.3 → 1.1.4

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.
@@ -5,6 +5,7 @@ on:
5
5
  permissions:
6
6
  id-token: write
7
7
  contents: read
8
+ packages: write
8
9
 
9
10
  jobs:
10
11
  publish:
@@ -24,6 +25,15 @@ jobs:
24
25
  - run: pnpm publish --access public --no-git-checks
25
26
  - id: package_version
26
27
  run: echo "VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT
28
+ - uses: actions/github-script@v8
29
+ with:
30
+ script: |
31
+ github.rest.git.createRef({
32
+ owner: context.repo.owner,
33
+ repo: context.repo.repo,
34
+ ref: 'refs/tags/${{ steps.package_version.outputs.VERSION }}',
35
+ sha: context.sha
36
+ })
27
37
  - uses: docker/login-action@v3
28
38
  with:
29
39
  registry: ghcr.io
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blitzbrowser/blitzbrowser",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Deploying, scaling and managing headful browsers in docker.",
5
5
  "license": "Apache-2.0",
6
6
  "main": "./dist/index.js",