fixed updater, added more langs #30
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
name: Build extension | |
on: | |
# release: | |
# types: [published] | |
push: | |
branches: [ "main" ] | |
paths-ignore: | |
- '.git/**' | |
- '.github/**' | |
- 'README.md' | |
workflow_dispatch: | |
jobs: | |
zip-files: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# - uses: vimtor/action-zip@v1 | |
# with: | |
# files: manifest.json favicon.svg credits.html background-coub-pl.js style/ js/ ico/ _locales/ | |
# recursive: false | |
# dest: Polish-Coub.zip | |
- name: Upload zip version | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Polish-Coub | |
path: | | |
${{ github.workspace }} | |
!.git/** | |
!.github/** | |
!README.md |