python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
SSH to remote server in github actions
This is what I'm trying to use to connect to remote EC2 instance
- uses: appleboy/ssh-action@master
with:
host: ip-addr.eu-central-1.compute.amazonaws.com
username: ubuntu
ke...

dchoruzy
Votes: 0
Answers: 3
How to Set Gihub Secret with a Binary File for Github Workflow?
I would like to add one of my API configuration file (binary.file) to the Github secret (MY_BINARY_SECRET). Then it will be read and wrote to binary.file again in the workflow:
jobs:
build:
runs...
WenliL
Votes: 0
Answers: 1
GitHub Actions: user that published a release
Given the GitHub Actions workflow below, how can I get the username of the person who published the release that triggered the workflow?
name: My Workflow
on:
release:
types: [ published ]
jobs...

mxcd
Votes: 0
Answers: 1
Permission denied error in github actions
I have written a github action to retrieve the changed sql files and lint those changed files using sqlfluff.
Here is my github action code:
name: files_lint
on:
- pull_request
jobs:
lint:
r...
R0bert
Votes: 0
Answers: 2