From c0627b831c7630827fcce7ddab0430ef2c82d877 Mon Sep 17 00:00:00 2001 From: Nick Diego Date: Thu, 7 Mar 2024 08:27:19 -0600 Subject: [PATCH] Created the default wpcom workflow file. --- .github/workflows/wpcom.yml | 38 +++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/wpcom.yml diff --git a/.github/workflows/wpcom.yml b/.github/workflows/wpcom.yml new file mode 100644 index 0000000..34e9164 --- /dev/null +++ b/.github/workflows/wpcom.yml @@ -0,0 +1,38 @@ +name: Publish Website + +on: + push: + branches: + - main + workflow_dispatch: +jobs: + Build-Artifact-Action: + name: Build-Artifact-Action + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Upload the artifact + uses: actions/upload-artifact@v4 + with: + name: wpcom + path: | + . + !.DS_Store + !.stylelintrc.json + !.eslintrc + !.git + !.gitattributes + !.github + !.gitignore + !README.md + !composer.json + !composer.lock + !node_modules + !vendor + !package-lock.json + !package.json + !.travis.yml + !phpcs.xml.dist + !sass + !style.css.map + !yarn.lock \ No newline at end of file