.github/workflows/main.yml #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
workflow_dispatch: | |
jobs: | |
zip: | |
name: Package plugin file | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: list files | |
run: | | |
ls | |
- name: create zip | |
run: | | |
zip plugin.zip ./ -r | |
- name: list files | |
run: | | |
ls | |