Skip to content

Commit 00ed2a6

Browse files
getsentry-botandreiborza
authored andcommitted
release: 3.1.1
1 parent b7a5f0b commit 00ed2a6

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 3.1.1
4+
5+
- fix: Only pass `urlPrefix` to sentry-cli if it's not empty (#275) by @andreiborza
6+
37
## 3.1.0
48

59
- feat: Add `release` and `release_prefix` in favor of `version` and `version_prefix` (#273) by @andreiborza
@@ -82,16 +86,17 @@ This release contains changes concerning maintainers of the repo and has no user
8286
## 1.10.0
8387

8488
- **feat(action): Support macos and windows runners**
85-
We now publish a composite action that runs on all runners. Actions can now be properly versioned, allowing pinning versions from here on out.
89+
We now publish a composite action that runs on all runners. Actions can now be properly versioned, allowing pinning versions from here on out.
8690

8791
## 1.9.0
8892

8993
**Important Changes**
9094

9195
- **feat(sourcemaps): Add inject option to inject debug ids into source files and sourcemaps (#229)**
92-
A new option to inject Debug IDs into source files and sourcemaps was added to the action to ensure proper un-minifaction of your stacktraces. We strongly recommend enabling this by setting inject: true in your action alongside providing a path to sourcemaps.
96+
A new option to inject Debug IDs into source files and sourcemaps was added to the action to ensure proper un-minifaction of your stacktraces. We strongly recommend enabling this by setting inject: true in your action alongside providing a path to sourcemaps.
9397

9498
**Other Changes**
99+
95100
- feat(telemetry): Collect project specific tags (#228)
96101

97102
## Previous Releases

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ runs:
148148
INPUT_WORKING_DIRECTORY: ${{ inputs.working_directory }}
149149
INPUT_DISABLE_TELEMETRY: ${{ inputs.disable_telemetry }}
150150
INPUT_DISABLE_SAFE_DIRECTORY: ${{ inputs.disable_safe_directory }}
151-
uses: docker://ghcr.io/getsentry/action-release-image:master
151+
uses: docker://ghcr.io/getsentry/action-release-image:3.1.1
152152

153153
# For actions running on macos or windows runners, we use a composite
154154
# action approach which allows us to install the arch specific sentry-cli

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123593,7 +123593,7 @@ module.exports = JSON.parse('{"eN":{"H":"https://github.com/elastic/require-in-t
123593123593
/***/ ((module) => {
123594123594

123595123595
"use strict";
123596-
module.exports = JSON.parse('{"name":"action-release","version":"3.1.0","private":true,"description":"GitHub Action for creating a release on Sentry","main":"dist/index.js","scripts":{"all":"yarn run format && yarn run lint && yarn run build && yarn test","build":"ncc build src/main.ts -e @sentry/cli","format":"prettier --write **/*.ts **/*.md","format-check":"prettier --check **/*.ts **/*.md","lint":"eslint src/**/*.ts","set-docker-tag":"./scripts/set-docker-tag.sh","set-docker-tag-from-branch":"./scripts/set-docker-tag-from-branch.sh","start":"node dist/index.js","test":"jest"},"repository":{"type":"git","url":"git+https://github.com/getsentry/action-release.git"},"keywords":["actions","sentry","release"],"author":"Sentry","license":"MIT","dependencies":{"@actions/core":"^1.11.1","@sentry/node":"^8.54.0","@sentry/cli":"^2.41.1"},"devDependencies":{"@types/jest":"^29.5.6","@types/node":"^20.8.9","@typescript-eslint/parser":"^6.9.0","@vercel/ncc":"^0.38.1","eslint":"^8.52.0","eslint-plugin-github":"^4.10.1","eslint-plugin-jest":"^27.4.3","jest":"^29.7.0","jest-circus":"^29.7.0","js-yaml":"^4.1.0","prettier":"^3.0.3","ts-jest":"^29.1.1","typescript":"^5.2.2"},"volta":{"node":"18.17.0","yarn":"1.22.4"}}');
123596+
module.exports = JSON.parse('{"name":"action-release","version":"3.1.1","private":true,"description":"GitHub Action for creating a release on Sentry","main":"dist/index.js","scripts":{"all":"yarn run format && yarn run lint && yarn run build && yarn test","build":"ncc build src/main.ts -e @sentry/cli","format":"prettier --write **/*.ts **/*.md","format-check":"prettier --check **/*.ts **/*.md","lint":"eslint src/**/*.ts","set-docker-tag":"./scripts/set-docker-tag.sh","set-docker-tag-from-branch":"./scripts/set-docker-tag-from-branch.sh","start":"node dist/index.js","test":"jest"},"repository":{"type":"git","url":"git+https://github.com/getsentry/action-release.git"},"keywords":["actions","sentry","release"],"author":"Sentry","license":"MIT","dependencies":{"@actions/core":"^1.11.1","@sentry/node":"^8.54.0","@sentry/cli":"^2.41.1"},"devDependencies":{"@types/jest":"^29.5.6","@types/node":"^20.8.9","@typescript-eslint/parser":"^6.9.0","@vercel/ncc":"^0.38.1","eslint":"^8.52.0","eslint-plugin-github":"^4.10.1","eslint-plugin-jest":"^27.4.3","jest":"^29.7.0","jest-circus":"^29.7.0","js-yaml":"^4.1.0","prettier":"^3.0.3","ts-jest":"^29.1.1","typescript":"^5.2.2"},"volta":{"node":"18.17.0","yarn":"1.22.4"}}');
123597123597

123598123598
/***/ })
123599123599

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "action-release",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"private": true,
55
"description": "GitHub Action for creating a release on Sentry",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)