-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
⬆️ Use newer version of upload action
- Loading branch information
1 parent
8ca7342
commit 4267fe1
Showing
1 changed file
with
18 additions
and
17 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,26 +6,27 @@ name: Deploy | |
on: | ||
push: | ||
tags: | ||
- '**' | ||
- "**" | ||
|
||
jobs: | ||
extension_bundle: | ||
name: Extension Bundle | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v2 | ||
- name: Install Dependencies | ||
run: | | ||
sudo apt-get update -q | ||
sudo apt-get install gettext | ||
- name: Create Release | ||
run: | | ||
make zip | ||
- name: Upload Release | ||
uses: svenstaro/[email protected] | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: [email protected] | ||
tag: ${{ github.ref }} | ||
overwrite: true | ||
- name: Checkout Repository | ||
uses: actions/checkout@v2 | ||
- name: Install Dependencies | ||
run: | | ||
sudo apt-get update -q | ||
sudo apt-get install gettext | ||
- name: Create Release | ||
run: | | ||
make zip | ||
- name: Upload Release | ||
uses: svenstaro/[email protected] | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: [email protected] | ||
tag: ${{ github.ref }} | ||
overwrite: true | ||
draft: true |