Skip to content

Commit

Permalink
Create create-release.yml (#5)
Browse files Browse the repository at this point in the history
* Create create-release.yml

* Update create-release.yml

* Update create-release.yml

* Update package.json
  • Loading branch information
richtabor authored Jul 8, 2024
1 parent d4f7273 commit 61960e6
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 1 deletion.
49 changes: 49 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Create Release

on:
push:
tags:
- '*'

permissions:
contents: write

jobs:
create-release:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20.11.0' # Specify the Node.js version you need

- name: Install dependencies
run: npm install

- name: Build plugin zip
run: npm run plugin-zip

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false

- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dark-mode-toggle-block.zip
asset_name: dark-mode-toggle-block.zip
asset_content_type: application/zip
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"lint:js": "wp-scripts lint-js",
"lint:js-fix": "wp-scripts lint-js --fix",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"plugin-zip": "wp-scripts build && wp-scripts plugin-zip",
"start": "wp-scripts start",
"dev": "wp-scripts start"
},
Expand Down

0 comments on commit 61960e6

Please sign in to comment.