Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Commit

Permalink
Add compress & publish Github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
baptisteArno committed Mar 17, 2021
1 parent 597e7c1 commit 6ffa1e4
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .github/workflows/chrome-webstore-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: Publish in Chrome Web Store

on:
push:
tags:
- "v*.*.*"

jobs:
publish-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- run: yarn
- run: yarn build
- uses: papeloto/action-zip@v1
with:
files: build/
dest: tinking.zip
- name: Upload Release
uses: ncipollo/release-action@v1
with:
artifacts: "tinking.zip"
token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Tinking - Scrapping Tool",
"version": "0.0.0.4",
"version": "0.1.0",
"manifest_version": 2,
"description": "Extract data from any website without code, just clicks",
"icons": {
Expand Down

0 comments on commit 6ffa1e4

Please sign in to comment.