Skip to content

Commit

Permalink
Add shared action for macOS tools
Browse files Browse the repository at this point in the history
  • Loading branch information
David Brunow committed Apr 15, 2024
1 parent 6b36c9a commit 8946f63
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/macos-tools-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Common things to do in a macOS tool CI pipeline
name: macOS Tools

on:
workflow_call:
inputs:
config-path:
required: true
type: string
secrets:
envPAT:
required: true

jobs:
build:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- name: Run a one-line script
run: echo Hello, world!
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.
5 changes: 5 additions & 0 deletions unpack.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#! /bin/sh

rm -rf $(dirname "$0")/.git

# Move things out of the CI-Tooling repo here

0 comments on commit 8946f63

Please sign in to comment.