From 7f32d0ac195ec40fa8d6106701601054d04937f2 Mon Sep 17 00:00:00 2001 From: Korbs <51213244+KorbsStudio@users.noreply.github.com> Date: Sat, 30 Apr 2022 14:09:57 -0400 Subject: [PATCH] Create update-website.yml --- .github/workflows/update-website.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/update-website.yml diff --git a/.github/workflows/update-website.yml b/.github/workflows/update-website.yml new file mode 100644 index 0000000..2ce1c69 --- /dev/null +++ b/.github/workflows/update-website.yml @@ -0,0 +1,17 @@ +name: Update Website + +on: + push: + branches: [ main ] + + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Run a one-line script + run: echo Hello, world!