Skip to content

Commit

Permalink
CI TTY testing
Browse files Browse the repository at this point in the history
  • Loading branch information
davidferlay committed May 10, 2024
1 parent b61f431 commit 32750d9
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Ensure no TTY if user does not need to input anythin
on:
push:
workflow_dispatch:

jobs:
job1:
name: Login
runs-on: ubuntu-latest
env:
TOKEN_JSON: ${{ secrets.TOKEN_JSON }}
CREDENTIALS_JSON: ${{ secrets.CREDENTIALS_JSON }}
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Commands
run: |
echo
date
pwd
whoami
make all
ls -lah bin/launchr
./bin/launchr login --url=http://***.git --username="***" --password="***" --keyring-passphrase="***"

0 comments on commit 32750d9

Please sign in to comment.