Questions tagged [github-release]

60 questions
0
votes
1 answer

semantic-release Github multi-platform publish

I have an Electron app that I want to publish with semantic-release. I need to create a matrix in Github Action to build the app on different platforms: strategy: matrix: os: [windows-latest, ubuntu-latest, macos-latest] Now, if I run…
baruchiro
  • 5,088
  • 5
  • 44
  • 66
0
votes
1 answer

Create GitHub release using CloudBuild

I have everyting automated with CloudBuild and additionally I'd like to create a GitHub release using the CloudBuild. In short, I prepare binary files and then I want to create a GitHub release using those files. I cannot find any working example.…
0
votes
1 answer

how to release and auto-update electron desktop programs for linux windows macos without code-signing and semantic versioning?

electron-builder and its electron-updater dictate that program must have semver https://github.com/electron-userland/electron-builder/blob/v23.0.3/packages/electron-updater/src/AppUpdater.ts#L331 electron's default autoUpdates does not support…
0
votes
1 answer

How is electron-updater able to find my repository?

I have a repository that utilizes electron-updater for auto update. The weird thing is, it has no any code whatsoever pointing where the release updates are stored (I store it in GitHub releases), but somehow the…
0
votes
1 answer

How to fetch github releases using bitbake recipe?

I am trying to fetch a github latest release from a recipe(bitbake) using yocto build system. My recipe looks like this... DESCRIPTION = "web based app " LICENSE = "CLOSED" APP_DESTINATION = "${libdir}/App" SRC_URI = " \ …
Hsn
  • 1,168
  • 2
  • 16
  • 39
0
votes
1 answer

Github App permission required to upload an asset to a release

What is the permission required to upload an asset to a release via a github app? (no OAuth) I need to POST to url like https://{{git_url}}/api/uploads/repos/{{owner}}/{{repo}}/releases/{{releaseNumber}}/assets?name={{assetName}} In the permission…
0
votes
1 answer

Trigger a github workflow before running another workflow on : release [created]

When I create a new release on Github via its UI, I want to trigger the release.yml workflow. Within the release.yml workflow, I'd like to first run the ci.yml workflow and only if it passes, go ahead and create a release. If the ci.yml worflow…
Gru
  • 817
  • 13
  • 20
0
votes
1 answer

Change naming convention of github release tags

I've joined a project which uses Github actions & releases. Unfortunately, naming convention of release tags changed in the past (probably due to migration from Travis CI). Until a certain point of time, the tags were like this (not sure why the…
0
votes
1 answer

Problem with creating github release via travis-ci with body content

I need help or explanation in deployment to github releases via Travis-CI I have part of .travis.yml configuration file jobs: include: - stage: publish if: env(BRANCH_IS_TAG) != true name: "Create Github Release" script: …
0
votes
1 answer

Travis CI release to GitHub does not include files

I want to release two zip files that are created in a Travis CI build to the GitHub Release page. Unfortunately, only the source code is listed under assets after the deploy, but not the two zip files. The deploy steps look like this: deploy: …
secana
  • 671
  • 6
  • 15
0
votes
1 answer

travis-ci GitHub release upload is unauthorized

I am trying to automate uploading binaries of C++ library as GitHub Releases with Travis-CI. The release is set up to proceed with encrypted token from a user with admin privileges on repository. Everything is according to the docs, but still…
0
votes
0 answers

How to make a Github repo depend on a particular release from another repo?

I have two repos on Github: a database repo and an API repo. These repos must stay separate, however one should depend on the other: The database repo contains .sql files (tables, test data, sprocs, ...), documentation files, build and release…
dbdemon
  • 207
  • 2
  • 10
0
votes
2 answers

version number of a commit hash in github

I am new to GitHub. I am currently researching an issue of an open software available in GitHub, so I want to know the version number of the open software software for which the commit (solution to correct the issue) hash number for the solution. To…
Ankhi Roy
  • 1
  • 2
-1
votes
1 answer

Download Github Release with version tag

I have a Github release and I want to download the latest assests with the version tag. I want to save the .exe file with version include but this will prevent me from downloading the latest release with a single same link every time. I want to…
OutdatedGuy
  • 160
  • 1
  • 10
-1
votes
1 answer

publishing my react-app bundled in electron app to github releases

I have a create-react-app which I have bundled with electron and I have packaged it but now I want to publish my app so I tried using Github releases but then as per their documentation when I try to attach my files it fails saying that I cannot…
Dhaval Chheda
  • 4,637
  • 5
  • 24
  • 44
1 2 3
4