Skip to content

⬆️ Use newer version of upload action #42

⬆️ Use newer version of upload action

⬆️ Use newer version of upload action #42

Workflow file for this run

# SPDX-FileCopyrightText: Simon Schneegans <[email protected]>
# SPDX-License-Identifier: CC0-1.0
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/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: [email protected]
asset_name: [email protected]
tag: ${{ github.ref }}
overwrite: true
draft: true