Skip to content

Commit

Permalink
Update gha.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
xsoloking authored Feb 11, 2024
1 parent a987f95 commit 67c9c25
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/gha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ name: CI

on:
workflow_dispatch

inputs:
ssh:
description: 'SSH connection to Actions'
required: false
default: 'false'
jobs:
macos-12:
runs-on: ${{matrix.OS}}
Expand All @@ -16,6 +20,14 @@ jobs:
with:
xcode-version: '13.4.1'
- uses: actions/checkout@v1

- name: SSH connection to Actions
uses: P3TERX/[email protected]
if: (github.event.inputs.ssh == 'true' && github.event.inputs.ssh != 'false') || contains(github.event.action, 'ssh')
env:
TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }}
TELEGRAM_BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }}

- name: Install dependencies
run: |
echo "--insecure" > ~/.curlrc
Expand Down

0 comments on commit 67c9c25

Please sign in to comment.