github-actions Questions
2
Solved
I am trying to create a Github Action job that will automatically generate a release note and create a release based on that note. I have found an action called "actions/create-release", ...
Ritter asked 9/3, 2023 at 1:35
4
Solved
I want to execute a python script to set some environment variables in GitHub actions. I want to use those environment variables later in my GitHub actions steps. My python script looks like:
new_v...
File asked 26/11, 2021 at 10:57
4
In GitHub action on pull request, I need to run some code in the context of the "current master", and later re-run the same code in the context of the PR branch.
I can check out compare a pull req...
Hyperparathyroidism asked 23/4, 2020 at 18:0
4
Solved
I have a branch protection to my test branch, but i need to execute every pull request merged a action to update the version of the software and commit in the test branch.
Even with the tag --force...
Stomach asked 19/10, 2022 at 15:51
2
For this question, there are a few constraints:
This needs to work without any NPM packages, including @actions/core. Hence I can't do core.setOutput(name, value);
It used to be possible to ...
Bootlace asked 17/11, 2022 at 10:39
3
I have some tests that I would like to run on every commit of my repository. I have the following script in my repo:
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: ac...
Instalment asked 6/11, 2020 at 3:18
4
I'm trying to run the build of my Angular project using NX in the CI with GitHub Actions, but it fails with errors such as:
npm ERR! code 1
npm ERR! path /runner/_work/myapp/node_modules/nx
npm ERR...
Saliferous asked 13/2, 2024 at 15:18
3
Solved
I have an Azure storage account. When I allow all networks to it, my Github Actions can run and update my Azure static website.
When I disallow all but named networks (147.243.0.0/16 and my machine...
Upbringing asked 21/6, 2021 at 14:58
2
Similar tho this question How to run Github Actions with the 'deployment_status' kitty and only on the QAS branch?
I want to execute a workflow only on a specific branch but combined with t...
Kosygin asked 19/10, 2021 at 10:50
2
I am trying to create a Dockerfile based action that adds a program to the $PATH so that it can be used by later actions. My action runs code like this:
mkdir -p $GITHUB_WORKSPACE/bin
echo "echo H...
Formerly asked 15/11, 2019 at 20:41
3
Solved
Some context
Long story short: I am trying to run jest --changedSince=master when I open up a new Pull Request. The jest changedSince flag runs git diff master...HEAD in the background. This result...
Salenasalene asked 22/11, 2020 at 18:29
2
Solved
I've been running pnpm/action-setup@v2 for awhile now, but I started getting this error.
Running self-installer...
WARN GET https://registry.npmjs.org/pnpm error (ERR_INVALID_THIS). Will retry i...
Blesbok asked 3/7, 2024 at 18:17
2
I have two private GitHub repositories within my organisation (or my user). One of them contains the other as a submodule. How can I clone this other private repository with its containing submodul...
Jointworm asked 21/6, 2022 at 5:18
4
Due to security reasons, we need to explicitly disable GitHub-hosted runners, ideally for the entire organization. Any clues on how to do it?
Dendroid asked 4/5, 2022 at 7:46
3
Solved
I am configuring Coveralls using a GitHub Action.
I searched but I cannot find how I should be able to generate the ./coverage/lcov.info file.
When the action runs, since I don't have such file, I ...
Disgusting asked 5/10, 2020 at 13:29
4
I'm trying to fetch the version of my maven project as part of of the deployment process, but I seem to be getting an error on the command's output. Any ideas?
I have Maven help in my pom.xml plugi...
Seaware asked 29/8, 2020 at 14:15
2
Building a GitHub action based on the commit message I'm trying to base a step on whether the commit message contains a particular string, set it to a variable and then in the next step check with ...
Marketing asked 3/5, 2022 at 15:3
2
I'm trying to create a github workflow for my repo that is using supabase edge functions. The error I'm receiving is: Node.js 16 actions are deprecated. Please update the following actions to use N...
Inadequate asked 14/2, 2024 at 5:20
3
I'm building an Android apk using Github actions, and I need to use the Android sign key in order to sign it before releasing it.
To do so I'm using the technic described here with GPG to encrypt t...
Beadroll asked 30/6, 2020 at 14:20
3
I am trying to connect to Postgres using docker in github actions. Here is my github actions file:
name: Carbon Link backend server CI
on:
push:
branches: [ 'develop', 'PC-3-setup-github-action...
Pym asked 20/4, 2022 at 16:39
3
Hi I'm trying to deploy my react app using Azure Web app service using github action as deployment provider. build process have done but deploy step shows error at the end.
here is error sample:
Ru...
Cormick asked 7/6, 2023 at 2:31
4
Solved
I have the following github action setup that triggers fine on creation of Pull Request. But it does not show up in the status checks list of protected branch (main). I'm not sure what I'm doing wr...
Brassiere asked 28/7, 2021 at 5:13
10
Solved
I have a GitHub workflow that creates APKs for my Flutter app. This worked fine until recently, I seem to have exhausted some kind of quota. Now when the workflow runs I get this error:
Create Arti...
Cyanosis asked 16/1, 2022 at 14:3
4
I have a github actions workflow that works but shows the following warning at the bottom of the summary page.
Node.js 16 actions are deprecated. Please update the following actions to use Node.js ...
Skippet asked 29/1, 2024 at 5:52
7
Recently github has announced change that echo "::set-output name=x::y" command is deprecated and should be replaced by echo "x=y" >> $GITHUB_OUTPUT
The previous command w...
Lane asked 20/10, 2022 at 9:2
© 2022 - 2025 — McMap. All rights reserved.