Skip to content

πŸš€ Deploying plugin #30

πŸš€ Deploying plugin

πŸš€ Deploying plugin #30

Workflow file for this run

name: Build c3addon
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: βž• Install zip
uses: actions/checkout@v2
- name: πŸ“¦οΈ Packaging c2addon
uses: vimtor/action-zip@v1
with:
files: plugin/
dest: airconsole.c3addon
- name: βœ… Saving artifact for testing
uses: actions/upload-artifact@v1
with:
name: airconsole.c3addon
path: ${{ github.workspace }}/airconsole.c3addon
- name: πŸ”– Commit and push
uses: EndBug/add-and-commit@v7
with:
add: '["${{ github.workspace }}/airconsole.c3addon"]'
message: 'πŸš€ Deploying plugin'
push: true