Skip to content

Commit

Permalink
feat: plugin remoto
Browse files Browse the repository at this point in the history
  • Loading branch information
controlado committed Jul 23, 2023
1 parent 3afdba5 commit b3a1248
Show file tree
Hide file tree
Showing 8 changed files with 808 additions and 39 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Publicar pacote no NPM

on:
workflow_dispatch:
push:
paths:
- src/**
- package.json
- package-lock.json

jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Configurando o Node.js
uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/

- name: Instalando dependências
run: npm install

- name: Buildando o plugin
run: npm run build

- name: Publicando o pacote
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.npm_token }}
56 changes: 18 additions & 38 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
@@ -1,52 +1,32 @@
name: Criar Release
name: Criar nova release

env:
plugin_name: buy-champions

on:
push:
paths-ignore:
- "**.md"
- "**.yml"
workflow_dispatch:
repository_dispatch:

env:
PLUGIN_NAME: "buy-champions"
push:
paths:
- index.js
- README.md
- README.br.md

jobs:
release:
runs-on: ubuntu-latest

steps:
- name: Checkout do repositório
uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v3

- name: Criar pasta de arquivos do repositório
run: mkdir ${{ env.PLUGIN_NAME }}
- name: Zipando o plugin
run: zip -r ${{ env.plugin_name }}.zip index.js README.md README.br.md

- name: Mover arquivos do repositório para a pasta criada
run: find . -maxdepth 1 ! -name "." ! -name ".git" ! -name ".github" -exec mv {} ${{ env.PLUGIN_NAME }}/ \;

- name: Baixar arquivo de dependência
run: curl -o _controladoUtils.js https://raw.githubusercontent.com/controlado/pengu-plugins/master/_controladoUtils.js

- name: Criar arquivo ZIP
run: zip -r ${{ env.PLUGIN_NAME }}.zip _controladoUtils.js ${{ env.PLUGIN_NAME }}/

- name: Criar Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Criando a release
uses: softprops/action-gh-release@v1
with:
name: ${{ env.plugin_name }} v${{ github.run_number }}
tag_name: v${{ github.run_number }}
release_name: Plugin v${{ github.run_number }}
draft: false
prerelease: false

- name: Adicionar arquivo ZIP à Release
uses: actions/upload-release-asset@v1
files: ${{ env.plugin_name }}.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./${{ env.PLUGIN_NAME }}.zip
asset_name: ${{ env.PLUGIN_NAME }}.zip
asset_content_type: application/zip
144 changes: 144 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,144 @@
# Created by https://www.toptal.com/developers/gitignore/api/node
# Edit at https://www.toptal.com/developers/gitignore?templates=node

### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp

# Docusaurus cache and generated files
.docusaurus

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

### Node Patch ###
# Serverless Webpack directories
.webpack/

# Optional stylelint cache

# SvelteKit build / generate output
.svelte-kit

# End of https://www.toptal.com/developers/gitignore/api/node
Loading

0 comments on commit b3a1248

Please sign in to comment.