From 83bd125582c80a168e27a4afa97bf5392540d0d9 Mon Sep 17 00:00:00 2001 From: Raphael <68374617+raphaelscholle@users.noreply.github.com> Date: Fri, 22 Sep 2023 21:09:21 +0200 Subject: [PATCH] Update blank.yml --- .github/workflows/blank.yml | 35 ++++++++++------------------------- 1 file changed, 10 insertions(+), 25 deletions(-) diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index 19dcbb0..c49a33c 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -1,34 +1,19 @@ -# This is a basic workflow to help you get started with Actions +name: PdfExport -name: CI +on: [push] -# Controls when the workflow will run -on: - # Triggers the workflow on push or pull request events but only for the "evo" branch - push: - branches: [ "evo" ] - pull_request: - branches: [ "evo" ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on + check-homebrew-version: runs-on: ubuntu-latest - # Steps represent a sequence of tasks that will be executed as part of the job steps: + - name: Checkout Repository + uses: actions/checkout@v2 - - # Runs a set of commands using the runners shell - - name: Run a multi-line script + - name: Install Homebrew run: | - /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" - brew install --head ortus-solutions/homebrew-boxtap/commandbox - box install gitbook-exporter - box update --system + /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" + brew update + - name: Display Homebrew Version + run: brew --version