Skip to content

Commit 3f43723

Browse files
authored
fix: url encoding in space names (#301)
1 parent 1619f79 commit 3f43723

File tree

4 files changed

+25
-9
lines changed

4 files changed

+25
-9
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,19 @@ steps:
5050
## 🤝 Contributions
5151

5252
Contributions are welcome! :heart: Please read our [Contributing Guide](CONTRIBUTING.md) for information about how to get involved in this project.
53+
54+
## Removing a release
55+
56+
To remove a release from publication:
57+
58+
Delete the release from the [releases](https://github.com/OctopusDeploy/push-package-action/releases) page and delete the corresponding tag from the [tags](https://github.com/OctopusDeploy/push-package-action/tags) page.
59+
60+
To do this in the cli:
61+
62+
v123 represents the release name
63+
64+
```
65+
gh release delete v123
66+
git tag -d v123
67+
git push --delete origin v123
68+
```

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
},
66
"dependencies": {
77
"@actions/core": "^1.10.0",
8-
"@octopusdeploy/api-client": "^3.0.4",
8+
"@octopusdeploy/api-client": "^3.0.5",
99
"glob": "^8.1.0"
1010
},
1111
"description": "GitHub Action to Push a Package to Octopus Deploy",

0 commit comments

Comments
 (0)