Most voted "github-actions" questions
5 questions
Sort by count of
-
4
votes1
answer82
viewsWhy doesn’t Github Workflow start?
I created in my repository (currently, Github master branch) a Workflow to run the tests of my Python application, using the pytest. I set it to run on ubuntu-latest in Python versions (3.6, 3.7 and…
-
0
votes0
answers4
viewsLogin error in firebase deploy
I’m able to deploy using firebase CLI commands on my machine, but I’m not getting through this step in git actions, can someone help me?…
-
0
votes1
answer22
viewsGITHUB - Problems to associate local repository with remote repository
I’m starting programming and we’re going to use git/github, I’m creating the first project; I followed the steps : I started a repository ( git init ); I linked the local repository to the remote…
-
0
votes0
answers9
viewsProblems with CI/CD in Github Actions for AWS
I am facing a problem when making my application CD in AWS, within my yml code I have the following excerpt: # Configure AWS credentials - name: Configure AWS credentials uses:…
-
-3
votes0
answers26
viewsHow do I run Github Actions in the `deployment_status` event but only for the QAS Branch?
I need github actions to run only on the QAS branch and with deployment_event. At the moment I’m implementing in this way name: Cypress on: [deployment_status] jobs: e2e: if:…