Questions tagged [github-release]

60 questions
2
votes
1 answer

how to download the archived GitHub Release Source code using GitHub Actions

I Would like to know if its possible to download the archived GitHub released source code file which is usually seen as( Source code(zip) & Source code(tar.gz) in the release pages using GitHub actions. I see lot of actions in the marketplace to…
sur
  • 345
  • 1
  • 3
  • 13
2
votes
0 answers

AWS Codebuild to support GitHub releases

Can you please help me to figure out how I can customize the Codebuild Webhook to be triggered once a GitHub releases is published, I couldn't find it online. I cannot use CodePipeline as it's not yet supported under the me-south-1 region. thank you
Ahmed Al-Haffar
  • 520
  • 4
  • 17
2
votes
2 answers

Can I maintain a single binary on GitHub outside git's tracking?

I have a GitHub repository consisting of LaTeX code for my resume. Currently, I'm including the generated PDF file as a file in git, i.e. it's tracked in version control. The only purpose of including the PDF is to have a link to the latest resume…
Harish Rajagopal
  • 1,212
  • 1
  • 13
  • 19
2
votes
1 answer

How to Merge a branch with a already released code?

I have a hotfix that needs to be applied to a already released code. I can get to the master of release but when I try to merge the branch, GitHub automatically changes the default branch to master. I am not sure how to do it from GitHub UI. Can…
django-unchained
  • 844
  • 9
  • 21
2
votes
1 answer

Triggering a CI/CD build when a tag is added to the GitHub repo this repo is forked from?

There's a project using GitHub releases to release their packages. I've built a process that repackages the released files and uploads the repackaged files to a special GitHub release in my fork of the repository. I'd like to fully automate this…
2
votes
1 answer

Travis CI: Deploy JAR to Github Releases

I want to use Travis to create nice posts in Github Releases after commit in master This is what I need: establish custom title establish custom description Publish only build without source code zip I tried everything I could, but I could only…
RareScrap
  • 541
  • 1
  • 7
  • 17
2
votes
1 answer

Create nightly releases with multiple artifacts on Github via travis

I wanted to test Github releases for our OSS. The first problem I encountered is, that travis seems to be unable to merge Github releases from different build-configs of the same build (e.g. create a OSX and a linux version and upload both at the…
Flamefire
  • 5,313
  • 3
  • 35
  • 70
2
votes
1 answer

Maintain executable file permissions when uploading binaries to a github release

I'm adding binaries to a release in github by dragging and dropping them into the binaries upload section when creating a new release. The binaries have the following permissions on my local (OSX): -rwxr-xr-x 1 user group 100 Mar 22 00:00…
Bilbo Baggins
  • 1,029
  • 1
  • 9
  • 19
1
vote
1 answer

How can I set the "git tag" message as an environment variable in Github Actions?

I want to automate the release process of pypdf. The idea is that I just push a git tag and a Github Action creates a Github release. In Bash, I use the following to set the `tag_body: latest_tag=$(git describe --tags --abbrev=0) tag_body=$(git tag…
Martin Thoma
  • 124,992
  • 159
  • 614
  • 958
1
vote
0 answers

C# Octokit creating a github release not working, throwing error 'Not Found'

I have a public repository on github, where i would like to create a release with c#. I watched a lot of documentation, and issues but a couldn't find what am i doing wrong. Here is my C# code: public static async Task CreateReleaseAsync(string…
Stanley
  • 37
  • 4
1
vote
2 answers

How to delete all releases and tags in a github repository

I tried the github cli: gh release list | sed 's/|/ /' | awk '{print $1, $8}' | while read -r line; do gh release delete -y "$line"; done as described here: https://dev.to/dakdevs/delete-all-releases-from-github-repo-13ad But it only works for…
Jonas Eicher
  • 1,413
  • 12
  • 18
1
vote
0 answers

semantic-release deploy electron-builder to Github Release

The semantic-release and electron-builder are both publishing a Github Release. I want to combine them, so semantic-release will be responsible for the release version and CHANGELOG, but the electron-builder will be responsible for the publishing…
1
vote
2 answers

Github Actions: Multiple jobs single release

I am having 2 jobs in the Github runner. The first job builds the android apk. The second one to build a zip file. I want to have both the apk and the zip file in the same release. But after the apk is published into a release, the zip file does not…
Ajit Kumar
  • 367
  • 1
  • 10
  • 35
1
vote
0 answers

GitHub Release for non-deliverables like web applications

We're in the process of moving our web-applications source code to GitHub. Currently we trigger our CD pipeline using a tag like release-x.x.x I stumbled on GitHub Release which is interesting, I like having the option to write release document etc.…
1
vote
1 answer

How to add files for the Source code (.zip) dowload on GitHub

I wanted to share my program on GitHub. I have a .exe file for the download and the source code for the source code (.zip) But how can I add something to the Source code thing? I ended up with something like this. (The source code files are the…
Eskimo868
  • 238
  • 1
  • 12