Skip to content

Commit

Permalink
⬆️ Use newer version of upload action
Browse files Browse the repository at this point in the history
  • Loading branch information
Schneegans committed Aug 23, 2024
1 parent 53cab08 commit a24e5b6
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,28 @@ name: Deploy
on:
push:
tags:
- '**'
- "**"

jobs:
source_code:
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/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: flypie@schneegans.github.com.zip
asset_name: flypie@schneegans.github.com.zip
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/upload-release-action@2.9.0
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: flypie@schneegans.github.com.zip
asset_name: flypie@schneegans.github.com.zip
tag: ${{ github.ref }}
overwrite: true
draft: true

0 comments on commit a24e5b6

Please sign in to comment.