All Questions
Tagged with github-actions devops
182 questions
0
votes
1
answer
41
views
Why does web app (linux) deployment via gitactions fails after running for 1 hour even though I am using the deployment center (web apps)?
I have set up two pipelines to deploy a front end (React) and a back end (.NET8) , To integrate GitHub actions to web apps I have used deployment center (web apps), The pipeline for deploying back end ...
0
votes
1
answer
86
views
How do I configure Microsoft Security DevOps' ESLint scan to produce the correct command-line output?
I am trying to configure MSDO's ESLint scan according to the instructions here:
https://github.com/microsoft/security-devops-action/wiki#ESLint-options
I would like to reproduce the command here(...
0
votes
2
answers
78
views
github actions doesn't recognize configuration variables
I am using the very simple workflow:
name: Deploy Frontend
# env:
# REACT_APP_API_URL: ${{ vars.REACT_APP_API_URL }}
# CORS_ALLOWED_ORIGINS: ${{ vars.CORS_ALLOWED_ORIGINS }}
env:
...
0
votes
1
answer
187
views
::error::Unable to get the ACTIONS_RUNTIME_TOKEN env variable
I am trying to upload my frontend to be hosted and served on github with github actions. I am using the following workflow:
name: Deploy Frontend
on:
push:
branches: [main, staging, frontend]
...
1
vote
1
answer
102
views
How do I push Go artifacts to a repository using Github actions?
I am currently trying to Go build artifacts of an application and this is my current pipeline
name: Build and Push Docker Image and Go Artifacts
on:
push:
branches:
- jfrog-dev # Your ...
1
vote
1
answer
203
views
How do I configure JFROG CLI and push Go artifacts to a repository using Github actions?
I am currently trying to push docker images(for deployment purposes) and build artifacts(for tracking purposes) of a Golang application and this is my current pipeline.
name: Build and Push Docker ...
0
votes
1
answer
134
views
How allow github actions to access database on vnet
I have setup a web app + database in azure and I am trying to deploy my code via github actions in the deployment center. I have added the connection string to my database in github secrets and I get ...
1
vote
1
answer
108
views
Git branching strategy with GitHub Actions
I am trying to build the CI / CD for learning the Devops CI and CD flows with simple branching strategy.
Branch Strategy :
| branch name | environment |
main --> prod
release/* --&...
1
vote
1
answer
485
views
How to Properly Store and Use a PEM File for SSH in GitHub Actions?
I'm trying to use GitHub Actions to deploy code to an EC2 instance. I've added my PEM file (the private key used for SSH) as a secret in GitHub, but I'm encountering the following error during the ...
0
votes
0
answers
34
views
Couldn't Fetch Artifact id of an uploaded artifact
I have two private repository A and B and I Am trying to download artifact from repo A to B for which I am using REST API to fetch Artifact ID But some how I am not able to see the id
curl -L
-H &...
0
votes
0
answers
93
views
How to Download Artifacts from a Different GitHub Actions Pipeline?
I'm working with GitHub Actions and have encountered an issue with downloading artifacts across different pipelines. While artifacts can be successfully downloaded between jobs within the same ...
0
votes
1
answer
51
views
How to Retrieve All Commit IDs After a Merge in GitHub
I have a GitHub repository with a branch named feature1 that contains 10 commits. A pull request (PR) has been raised to merge feature1 into the stage branch. Once the PR is merged, I want a GitHub ...
0
votes
0
answers
50
views
Docker container failing to build in GitHub Actions, but it builds on my local machine Ubuntu 24.04
I am trying to build and run a containerized Spring server in a GitHub Actions pipeline. The end goal is to have the backend and frontend both running in the pipeline, so that our Cypress tests can ...
0
votes
0
answers
42
views
How can I build/push docker images from a custom docker image in a github workfow
I am using a custom docker image to run a github workflow, whose ultimate purpose is to build and push an image to a GCR. I am using a custom image because the build process needs a lot of ...
0
votes
1
answer
187
views
How to pull GCR images from a GCE instance through GitHub Actions
I am implementing my GitHub Action workflow file which is supposed to update my docker images hosted on GCR, and then log into my GCE instance to pull the newly updated images with docker compose.
The ...