Skip to main content
0 votes
1 answer
16 views

GitHub Actions workflow conflicts with branch ruleset when publishing NPM package on PR merge

I’m trying to automatically build and publish an NPM package to my GitHub repository using GitHub Actions. The workflow runs on pull requests and performs these steps: Run tests Check linting Publish ...
Abdur Rahman's user avatar
0 votes
0 answers
18 views

`pm2 start` doesn't reload environment variables

I have a NextJS application running with pm2 and recently I updated the app with Apple signin feature. So, I have to setup two new environment variables in my server, namely AUTH_APPLE_ID and ...
Seto's user avatar
  • 1,724
0 votes
1 answer
42 views

GitHub CoPilot Coding Agent Secrets Management

This question is about the GitHub CoPilot Coding Agent (not the in-IDE CoPilot) - specifically how to pass secrets to the runner - based on the docs I've tried adding the OPENAI_API_KEY both at repo ...
shanlodh's user avatar
  • 1,055
-1 votes
1 answer
50 views

How to identify system/external dependencies of installed python packages

We're trying to offload checking if our python environment can install on our server to a GitHub action. What I would like to know is if there's a way of knowing which python packages in the ...
raphael's user avatar
  • 2,859
0 votes
0 answers
45 views

What is correct way to run flutter build ipa in Github actions?

since github has macos-latest runner and apple has official actions. I thought I can build ios ipa package inside macos runner from flutter project. But I failed. apple-actions/import-codesign-certs@...
hurelhuyag's user avatar
  • 1,753
0 votes
0 answers
15 views

"client_loop: send disconnect: Broken pipe rsync" with GitHub Actions and Lightsail VPS

I've been trying to tarball some Docker images to my VPS with GitHub Actions, but every time I try to use tools like rsync or scp it hangs for while and then it throws an timeout error (like the ...
ElMagoPerodelDQ's user avatar
0 votes
1 answer
42 views

How to make nuitka generate the same binary on GitHub Actions as locally?

I was trying to compile my python program to the smallest executable and I was pleased with this nuitka --python-flag=-OO --onefile updater.py As it produced this on my machine -rwxrwxrwx 1 filip ...
Filip's user avatar
  • 182
1 vote
0 answers
50 views

GitHub Actions variable regex replacement

I am trying to prepare artifact name prefix using GitHub Actions that will replace project name special characters with hyphens. I have this piece of code: strategy: matrix: project: - ...
Gucu112's user avatar
  • 990
0 votes
0 answers
63 views

Ignore specific dependencies in requirements file during GAS ADS

We've recently enabled GitHub Advanced Security(GAS) in one of our repositories, and whenever we create pull requests, the Automatic Dependency Submission(ADS) tries to validate our project(mainly the ...
Mase's user avatar
  • 95
0 votes
0 answers
25 views

How to securely pass Vault token obtained via JWT auth in GitHub Actions: composite action vs reusable workflow?

I’m trying to implement a Vault token retrieval using the JWT auth method in a GitHub Actions workflow. I’m evaluating two approaches: Scenario 1 – Composite Action Advantage: Token can be retrieved ...
hb.Sara's user avatar
  • 341
2 votes
2 answers
75 views

The output of an Github action is always empty when used as job output

I'm not able to access the output of a reusable workflow if that output is an output of an action. Everywhere I read says it should be possible, but I'm missing something. my resuable workflow: name: '...
Ivan Rodriguez's user avatar
0 votes
1 answer
67 views

Can the GitHub Actions bot be bypassed from signing commits by the GitHub Terraform provider?

I have a workflow that automatically creates PRs and it needs to bypass the rules that require commits to be signed. I have looked at the Terraform docs for this and a bypass list looks like this: ...
vbnm's user avatar
  • 107
3 votes
0 answers
113 views

Laravel migrations on production with large dataset take too long and cause deployment timeout

I'm facing an issue while deploying code to my production server using GitHub Actions (CI/CD). I have 3 environments: dev, staging, and production. On the dev server, migrations run fine because ...
Mustafa Ahmad's user avatar
1 vote
0 answers
100 views

How to build and push multi-arch Docker images (amd64, arm64) in GitHub Actions and extract digests? [closed]

I'm currently using GitHub Actions to build and push Docker images for amd64 only. Now I need to extend this workflow to support multi-arch images (amd64 + arm64), and then push them to both Docker ...
oshribr's user avatar
  • 684
1 vote
0 answers
58 views

Railway redeploy builds Docker image instead of pulling from Docker Hub in CI/CD pipeline

I’ve set up a GitHub Actions workflow to build and push a Docker image to Docker Hub, and then deploy it to Railway. My CI/CD pipeline (simplified): jobs: docker-and-deploy: runs-on: ubuntu-...
Rudraprasad's user avatar

15 30 50 per page
1
2 3 4 5
753