Skip to content

Commit

Permalink
cd: Add github token for authentication in the release stage
Browse files Browse the repository at this point in the history
  • Loading branch information
nemuelw committed Nov 9, 2024
1 parent 46e4873 commit 8c74265
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ jobs:
- name: Upload release asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url}}
asset_path: ./proton-desktop-${{ github.event.release.tag_name }}.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def __init__(self, parent=None):
title_label.setAlignment(Qt.AlignCenter)
layout.addWidget(title_label)

info_label = QLabel('Version 0.1.0\nUnofficial desktop app for Proton.')
info_label = QLabel('Version 0.1.1\nUnofficial desktop app for Proton.')
info_label.setAlignment(Qt.AlignCenter)
layout.addWidget(info_label)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "proton-desktop"
version = "0.1.0"
version = "0.1.1"
description = "Unofficial desktop app for Proton"
authors = ["Nemuel Wainaina <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 8c74265

Please sign in to comment.