π Set release date #49
Workflow file for this run
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
# SPDX-FileCopyrightText: Simon Schneegans <[email protected]> | |
# SPDX-License-Identifier: CC0-1.0 | |
name: Deploy | |
on: | |
push: | |
tags: | |
- '**' | |
jobs: | |
gnome_bundle: | |
name: Bundle GNOME Shell Extension | |
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 | |
kwin_bundle: | |
name: Bundle KWin Effect | |
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 clang-format | |
- name: Create Release | |
run: | | |
./kwin/build.sh | |
- name: Upload Release | |
uses: svenstaro/[email protected] | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: kwin/*.tar.gz | |
tag: ${{ github.ref }} | |
overwrite: true | |
file_glob: true |