Skip to content

Commit

Permalink
test aligning names
Browse files Browse the repository at this point in the history
  • Loading branch information
bacoords committed Apr 25, 2024
1 parent 6d05e6c commit 0b2efc8
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,21 @@ jobs:
npm install
npm run build
- name: Generate zip
uses: 10up/action-wordpress-plugin-build-zip@stable
env:
SLUG: block-theme
- name: Archive release
uses: thedoctor0/zip-release@0.7.5
with:
type: 'zip'
filename: 'release.zip'
exclusions: '*.git* /*node_modules/*'

- name: Upload release artifact
uses: actions/upload-artifact@v4
with:
name: release
path: release.zip

- name: Upload Release
uses: ncipollo/release-action@v1.14.0
with:
artifacts: "release.zip"
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 0b2efc8

Please sign in to comment.