Skip to content

Commit

Permalink
Merge pull request #310 from asieduernest12/master
Browse files Browse the repository at this point in the history
fix ui and auto tag with github action
  • Loading branch information
asieduernest12 authored Dec 25, 2024
2 parents cdb816c + 79459af commit cf72b58
Show file tree
Hide file tree
Showing 18 changed files with 31,030 additions and 9,639 deletions.
13 changes: 10 additions & 3 deletions .env.local.example
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
PLASMO_TARGET=chrome

VERSION=0.0.1
NAME="Jiffy Reader beta"
NAME="Jiffy Reader beta local"
TARGET=chrome
PLASMO_TARGET=chrome
DEBUG=false
SHORTCUT=
VERSION_NAME=0.0.1-devbuild
VERSION_NAME=

CLIENT_ID=
CLIENT_SECRET=
REFRESH_TOKEN=
EXTENSION_ID
SOURCE=
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "pnpm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
14 changes: 11 additions & 3 deletions .github/workflows/publish-development-release-plasmo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,22 @@ name: Plasmo build chrome development relase
on:
workflow_dispatch:
push:
tags:
- '*.*.*.*-*'
# tags:
# - '*.*.*.*-*'
branches: [plasmo]

jobs:
build:
if: github.ref_type == 'tag'
# if: github.ref_type == 'tag'
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 18.12.1 ]
name: Node ${{ matrix.node }} sample
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Setup node
uses: actions/setup-node@v3
Expand Down Expand Up @@ -50,9 +52,15 @@ jobs:
- name: Build artifacts
run: |
npm run release && head -n10 CHANGELOG.md
. action.sh
git push --follow-tags origin HEAD
- uses: ncipollo/release-action@v1
with:
artifacts: "build/jiffyReader-*"
token: ${{ secrets.GITHUB_TOKEN }}


- name: chrome ext upload
run: npx cws-upload ${{ secrets.CLIENT_ID }} ${{ secrets.CLIENT_SECRET }} ${{ secrets.REFRESH_TOKEN }} ./build/jiffyReader-chrome-development.zip ${{ secrets.EXTENSION_DEV_ID }}
59 changes: 0 additions & 59 deletions .github/workflows/publish-release-on-tag.yml

This file was deleted.

101 changes: 101 additions & 0 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
name: Plasmo build release
on:
workflow_dispatch:
push:
# tags-ignore:
# - '*.*.*.*-*'
branches: [master,plasmo]

jobs:
build:
# if: github.ref_type == 'tag'
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 18.12.1 ]
name: Node ${{ matrix.node }} sample
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}

- uses: pnpm/[email protected]
name: Install pnpm
id: pnpm-install
with:
version: 7
run_install: false

- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: |
# rm -rf node_modules/ pnpm-lock.yaml
pnpm install
pnpm install postcss@^8 webpack@^4.0.0
- name: Build artifacts
run: |
git config --global user.email "[email protected]"
git config --global user.name "gh-action"
npm run release
make build@latest test print-manifests
- name: Read version from package.json
run: echo "VERSION=$(npm pkg get version | tr -d '\"')" >> $GITHUB_ENV

- name: chrome ext upload
run: |
npx cws-upload ${{ secrets.CLIENT_ID }} ${{ secrets.CLIENT_SECRET }} ${{ secrets.REFRESH_TOKEN }} ./build/jiffyReader-chrome-prod.zip ${{ secrets.EXTENSION_ID }}
# if secrete.DEV_EXTENSION_ID is not empty then publish
if [ -n "${{ secrets.EXTENSION_DEV_ID }}" ]; then
npx cws-upload ${{ secrets.CLIENT_ID }} ${{ secrets.CLIENT_SECRET }} ${{ secrets.REFRESH_TOKEN }} ./build/jiffyReader-chrome-dev.zip ${{ secrets.EXTENSION_DEV_ID }}
fi
# - name: WebExtPublish: Firefox
# uses: maoserr/[email protected]
# with:
# firefox_extension_id: ${{ secrets.FIREFOX_DEV_EXT_ID }}
# api_key: ${{ secrets.FIREFOX_API_KEY }}
# api_secret: ${{ secrets.FIREFOX_API_SECRET }}
# file: build/jiffyReader-firefox-dev.xpi

- uses: ncipollo/release-action@v1
with:
# artifacts: "dist/wyzant-looker.zip,dist/changelog.md,CHANGELOG.md"
artifacts: "build/jiffyReader*"
token: ${{ secrets.GITHUB_TOKEN }}
generateReleaseNotes: true
tag: ${{ env.VERSION }}

- name: push master tags
run: git push --follow-tags origin HEAD

- name: chrome ext publish
run: |
npx cws-publish ${{ secrets.CLIENT_ID }} ${{ secrets.CLIENT_SECRET }} ${{ secrets.REFRESH_TOKEN }} ./build/jiffyReader-chrome-prod.zip ${{ secrets.EXTENSION_ID }}
# if secrete.DEV_EXTENSION_ID is not empty then publish
if [ -n "${{ secrets.EXTENSION_DEV_ID }}" ]; then
npx cws-publish ${{ secrets.CLIENT_ID }} ${{ secrets.CLIENT_SECRET }} ${{ secrets.REFRESH_TOKEN }} ./build/jiffyReader-chrome-dev.zip ${{ secrets.EXTENSION_DEV_ID }}
fi
15 changes: 10 additions & 5 deletions .github/workflows/run-test-plasmo.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: Plasmo build test
on:
workflow_dispatch:
push:
tags:
- '*'
branches: [master,plasmo]
pull_request:
# push:
# branches: [master,plasmo]

jobs:
build:
Expand All @@ -16,6 +15,8 @@ jobs:
name: Node ${{ matrix.node }} sample
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Setup node
uses: actions/setup-node@v3
Expand Down Expand Up @@ -50,5 +51,9 @@ jobs:
- name: Build artifacts
run: |
. action.sh
git config --global user.email "[email protected]"
git config --global user.name "gh-action"
npm run release && head -n10 CHANGELOG.md
make build@latest test print-manifests
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ yarn-error.log*


# local env files
.env.p*
.env.local
!.env.*example
.env.*

out/
build/
Expand Down
3 changes: 3 additions & 0 deletions .versionrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"releaseCount": 0
}
Loading

0 comments on commit cf72b58

Please sign in to comment.