Skip to content

Commit

Permalink
Created the default wpcom workflow file.
Browse files Browse the repository at this point in the history
  • Loading branch information
ndiego committed Mar 7, 2024
1 parent 1378bf0 commit c0627b8
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/wpcom.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c0627b8

Please sign in to comment.