From 87e0c6b2183ad070d00550a5a62339497c5ecc40 Mon Sep 17 00:00:00 2001 From: BodgeMaster <51952557+BodgeMaster@users.noreply.github.com> Date: Fri, 5 Sep 2025 19:28:56 +0200 Subject: [PATCH] GitHub Actions: customize example file to run deployment-script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Just trying to build the site, let’s see how this goes... --- .github/workflows/deployment-script | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/deployment-script diff --git a/.github/workflows/deployment-script b/.github/workflows/deployment-script new file mode 100644 index 0000000..906e79e --- /dev/null +++ b/.github/workflows/deployment-script @@ -0,0 +1,29 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the workflow will run +on: + push: + branches: [ "master" ] + + # 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 + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v4 + + # Runs a set of commands using the runners shell + - name: Run a multi-line script + run: | + cd $GITHUB_WORKSPACE + ./deployment-script.sh