Skip to content

Commit

Permalink
fix: package workflow release error
Browse files Browse the repository at this point in the history
  • Loading branch information
nedpals committed Apr 2, 2024
1 parent c6f5f73 commit b67324f
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up PHP
uses: shivammathur/setup-php@v2
Expand All @@ -34,15 +34,11 @@ jobs:

- name: Create release
id: create_release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: softprops/action-gh-release@v2
with:
name: Release ${{ github.sha }}
files: theme.zip
tag_name: release-${{ github.sha }}
body: |
Release ${{ github.sha }}
draft: false
prerelease: false

Expand Down

0 comments on commit b67324f

Please sign in to comment.