Top "Github-actions" questions

GitHub Actions allows you to easily automate your software workflows.

Github Action: Split Long Command into Multiple Lines

I have a Github action command that is really long: name: build on: [push] jobs: build: runs-on: ubuntu-18.04 steps: - …

github yaml github-actions
GitHub Actions: how to target all branches EXCEPT master?

I want to be able to let an action run on any given branch except master. I am aware that …

git github github-actions
How can I extract secrets using GitHub Actions?

I have a fairly basic scenario. I made a dedicated ssh key for this purpose and added it to my …

ssh github-actions secretsmanager
github-action: does the IF have an ELSE?

in github action I have an if, but I still need to run someother thing if I'm in the else …

github-actions
Github actions - how to deploy to remote server using SSH

I've a staging server on DO. I want to build & deploy my node app to it. name: Build & …

ssh github-actions
Anyone know a way to delete a workflow from GitHub Actions?

I create a couple workflows in the .github/workflows folder of my repository to experiment with GitHub Actions. I have …

github github-api github-actions
What are github actions minutes/month?

Can you please give a clear explanation, maybe with an example, as to what does github mean when saying that …

github github-actions
How to push nuget package in GitHub actions

I am trying to use GitHub actions to generate a NuGet package from my project and push it to the (…

bash github nuget action github-actions
Github Actions: check steps status

I have in my job for CI some steps which can throw an error. I don't want restart workflow on …

github-actions
Is there a way to push changes with a GitHub action?

This question refers to this: https://github.com/features/actions I have written a GitHub action to build my code …

github github-actions