Skip to content

Commit

Permalink
Changing trigger action
Browse files Browse the repository at this point in the history
  • Loading branch information
markbotterill committed Jan 19, 2024
1 parent dd8576e commit 5a091ff
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions .github/workflows/pkg_test.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
name: Machine Setup Testing

on:
workflow_dispatch:
inputs:
branchName:
description: 'Branch to run on'
required: true
default: 'setup-action'
push:
branches:
- "setup-action"


jobs:
setup_apple_silicon:
runs-on: macos-13 # M1
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
ref: ${{ github.event.inputs.branchName }}

- name: Set up Apple Silicon machine
run: |
Expand All @@ -27,8 +23,6 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
ref: ${{ github.event.inputs.branchName }}

- name: Set up Apple Intel machine
run: |
Expand All @@ -40,8 +34,6 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
ref: ${{ github.event.inputs.branchName }}

- name: Set up Linux machine
run: |
Expand Down

0 comments on commit 5a091ff

Please sign in to comment.