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