diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml new file mode 100644 index 0000000..88825ae --- /dev/null +++ b/.github/workflows/manual.yml @@ -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="***" diff --git a/.gitignore b/.gitignore index 30dd966..02de6e3 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,6 @@ *.gz *.gen.go dist/ -vendor/ \ No newline at end of file +vendor/ +.plasmactl/ +keyring.yaml.age