Questions tagged [github-release]
60 questions
1
vote
1 answer
Cannot access github releases for a repo, via web UI
I'm looking to test out github releases.
The guidance says:
On GitHub, navigate to the main page of the repository.
To the right of the list of files, click Releases or Latest release.
However, when I do this there is no "Releases" or "Latest…

Lee
- 29,398
- 28
- 117
- 170
1
vote
1 answer
How to npm install and compile on travis.ci for multiple environments (including 32 bit)
I have a project hosted on github that builds and publishes releases to GitHub using Travis.ci:
https://github.com/Roaders/rpi-garage-door/releases/tag/v1.1.0
currently this just adds one tgz file to the release. This includes the bundles…

Roaders
- 4,373
- 8
- 50
- 71
1
vote
1 answer
How to publish Travis CI artifacts to GitHub Release from several jobs
I have three Travis CI jobs to build my application for different operating systems.
Each operating system has a separate job: OS X for osx-x64, Linux for linux-x64 and Windows for win-x64.
After the build, I get one file of my application, it is…

saber-nyan
- 322
- 2
- 11
1
vote
1 answer
Github Release Azure Pipeline task - tagpattern wildcards does not work
Have an issue setting up a github release task in my azure devops pipeline. The pipeline yml looks like the following (its for a multi framework nuget package if that is of any use):
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
workspace:
…

Base
- 1,061
- 1
- 11
- 27
1
vote
1 answer
On Github release/tag UI, what is the difference between first and second form field?
Regarding this view on the Github UI
I thought I named it 'api-release-1579814212' but it got named just 'api-release', anyone know why?
user12211419
1
vote
1 answer
404 on github release download using java
Why am I getting a 404 here, while downloading a private repo release artifact.
URL url = new URL("https://github.com/anandchakru/private_repo/releases/download/rel_v1/artif-3.0.jar?access_token=myaccesstoken");
HttpsURLConnection connection…

Anand Rockzz
- 6,072
- 5
- 64
- 71
0
votes
1 answer
Early access to Github libraries before official release
I am using the JetBrains Exposed library available here on Github.
The latest release was in November 2022 however, since then, there have been merged pull requests which have added additional api functionality.
At the moment my Gradle dependency is…

mars8
- 770
- 1
- 11
- 25
0
votes
0 answers
Issue with Release-Please Workflow for Generating Git Tags and Release Notes
I am currently utilizing the Release-Please GitHub Action workflow for creating SemVer Git Tags, GitHub Releases, and changelog files. In my GitHub repository, I have separate branches for development, staging, and production. The workflow is…

Devam Parikh
- 13
- 3
0
votes
0 answers
the link of my site which i create on github does not work
i am a newcomer plz help fix this; i create two documents (an html & a css that link to the html) for my coursera assignment course4 and upload these documents to my repository in github, set the branch to main and root and get the link (Your site…

om66id66
- 1
- 3
0
votes
0 answers
Just released an executable of my code on Github, but Chrome stops the dowload because it contains a virus. How to fix?
No way to renew the download, it permanently cancells the download.
Zipping the file didn't help.

Hardliner
- 23
- 6
0
votes
1 answer
Why does git bundle not work in github action?
I have a github action workflow where I want to bundle my repository into a git bundle and then include it in a github release.
The bundling is done with the command,
git bundle create my-bundle.bundle --all
The bundle gets created correctly but…

oh1man
- 3
- 2
0
votes
0 answers
Is it safe to use Github/Gitlab releases to store database files for my app?
I'm developing an English dictionary mobile app. For the first time the app open, It'll nicely ask user to download the .db files which I uploaded to Github/Gitlab releases before and insert them to the local database.
So I chose Github/Gitlab to…

TorryDo
- 45
- 1
- 4
0
votes
1 answer
How to create release from tag that will show on the releases list?
I added some tags through git (command-line) and tried to create a release that will show under "releases", but unfortunately every time I create a release it will always show up in "tags".
I used the command-line to create 3 tags:
v0.1 (from an old…

OceanMan
- 11
- 2
0
votes
0 answers
Github latest release raw url to download through node js stream
How to get raw url of latest release so i can download through node js streams
import https from "https"
const { pipeline } = require("stream/promises")
import path from "path"
import fs from "fs"
async function download(url) {
return new…

Raghavan Vidhyasagar
- 130
- 7
0
votes
0 answers
How to GET the previous release from a repo using GitHub API
About
While we all know how to get the latest release:
GET /repos/:owner/:repo/releases/latest
or https://api.github.com/repos/:owner/:repo/releases/latest
But what about the previous release?
I want to get the previous release (meaning the one…

thefourCraft
- 33
- 6