Skip to content

Commit

Permalink
Bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lsegurado authored Nov 8, 2023
1 parent 88c7691 commit bc24625
Showing 1 changed file with 26 additions and 22 deletions.
48 changes: 26 additions & 22 deletions .github/workflows/execute-script.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,30 @@
name: Execute script
inputs:
script-name:
description: "Build script to execute"
type: string
required: true
runs:
using: "composite"
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2
on:
workflow_call:
inputs:
script-name:
description: "Build script to execute"
type: string
required: true

- name: Set up environment
uses: michijs/.github/.github/workflows/runtime/setup.yml@main
jobs:
Run:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2

- name: Install dependencies
uses: michijs/.github/.github/workflows/runtime/install.yml@main
- name: Set up environment
uses: michijs/.github/.github/workflows/runtime/setup.yml@main

- name: Execute script
uses: michijs/.github/.github/workflows/runtime/run.yml@main
with:
script-name: ${{ inputs.script-name }}
- name: Install dependencies
uses: michijs/.github/.github/workflows/runtime/install.yml@main

- name: Execute script
uses: michijs/.github/.github/workflows/runtime/run.yml@main
with:
script-name: ${{ inputs.script-name }}

0 comments on commit bc24625

Please sign in to comment.