11,238 questions
-2
votes
1
answer
19
views
Workflow dispatch button not appearing in the Actions tab
I am trying to set up a manual trigger in GitHub Actions so that I can build and release artifacts on demand. I have added the workflow_dispatch trigger with a boolean input to my workflow file, but ...
0
votes
0
answers
19
views
Workflow run not triggering second workflow when files are in a PR branch
I am refactoring my CI/CD pipeline by dividing a large workflow into multiple files for better maintainability. I want the first workflow to run unit tests, and if it succeeds, trigger a second ...
0
votes
0
answers
30
views
Gitstream.cm file causing errors
I want to create a gitstream.cm file in the root of our repo, so that when I push a feature to GitHub, it prepopulates the PR description. It should prepopulate the following in the PR:
PR title
PR ...
-3
votes
0
answers
104
views
GitHub Actions tests are falling to open TCP port
GitHub Actions tests are failing with a "Permission denied" message while trying to open a TCP port within a TCPListener class; the CI log can be found here.
Workflow config is located here, ...
-1
votes
1
answer
55
views
Cannot upload binaries via GitHub release workflow [closed]
I want to be able to release a binary whenever I push a tag. This is my release workflow:
name: Release
on:
push:
tags:
- 'v*'
env:
BUILD_TYPE: Release
jobs:
build-and-release:
...
0
votes
0
answers
35
views
GitHub Actions doc build fails in forked pandas repo but succeeds locally and in upstream CI [closed]
I’m getting started with contributing to pandas and began by looking at issues under the Docs label.
I’ve successfully forked the pandas repository, set up the local development environment, and I’m ...
Advice
0
votes
3
replies
72
views
Deploying to github
I want to know how to upload my project to GitHub and then deploy to render.
In my folder there are folders and single files like src/index.html
Problem is I can't upload folders so after all all my ...
-3
votes
1
answer
90
views
Spring Boot error in GitHub Actions : IllegalState Failed to load ApplicationContext
I'm doing an assignment for University using Spring Boot, Junit and GitHub. I'm having an error when pushing to my repo that start build and test GitHub Actions.
Here is the stack trace of the error I ...
1
vote
0
answers
51
views
Unable to connect Java Remote Debugger (JDB) over SSH to GitHub Actions instance
I'm trying to connect to a Java applications running in GitHub Actions with the Java Remote Debugger (JDB) over SSH.
Take a simple GitHub Actions workflow that:
opens an SSH connection to allow ...
-9
votes
0
answers
46
views
I Have two Github accounts how to switch [duplicate]
I have two Github accounts one for my personal use and one created for my job usage, Previously I used git bash to push my code into my repos but when I started my job I was told that I have to use my ...
0
votes
0
answers
66
views
Azure Data Factory NPM Validation Error (CICD) - @microsoft/azure-data-factory-utilities
I have utilized the @microsoft/azure-data-factory-utilities package to validate my Data Factory resources. Although the overall validation at the end indicates that it finished with no errors, I still ...
0
votes
0
answers
29
views
How do I create a homebrew tap in the same tree as my source?
My project works out of a monorepo and but we want to also package our software for macOS and therefore want it to be easily brew tap -able (it doesn't qualify for upstreaming to hombrew-core). We don'...
0
votes
0
answers
34
views
dotnet test targeting net472/net10.0-windows
I'm trying to make GitHub Actions run tests. The test projects are targeting multiple frameworks: net472/net8.0/net10.0/net10.0-windows, using xUnit.v3.mtp-v2.
Here is my .github/workflows/...
-3
votes
2
answers
103
views
Next.js app deployment on Azure Web App not working
I followed the instructions from here and created the app like this:
npx create-next-app@latest next-demo-app --typescript --eslint --app
It works totally fine locally in VS Code, by running npm run ...
0
votes
0
answers
33
views
MSB3103: Invalid Resx file when building in a github runner
I recently converted an old winforms project's csproj to the newer sdk format. This has a bunch of resx files for all the forms in the project. Building locally and running it works great. However, ...