Skip to content
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.

Commit

Permalink
fixed ci
Browse files Browse the repository at this point in the history
  • Loading branch information
dborsukov committed Mar 30, 2023
1 parent 68dd2fd commit 795d336
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
name: Release

permissions:
contents: write

on:
push:
tags:
Expand All @@ -14,11 +11,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: taiki-e/create-gh-release-action@v1
with:
changelog: CHANGELOG.md
token: ${{ secrets.TINYRSS_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.TINYRSS_TOKEN }}

upload-assets:
needs: create-release
strategy:
matrix:
os:
Expand All @@ -27,10 +24,17 @@ jobs:
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Download dependencies
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt install libatk1.0-0 librust-atk-dev libgtk-3-dev
fi
shell: bash
- uses: actions/checkout@v2
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: tinyrss
tar: unix
zip: windows
token: ${{ secrets.TINYRSS_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.TINYRSS_TOKEN }}
1 change: 0 additions & 1 deletion CHANGELOG.md

This file was deleted.

0 comments on commit 795d336

Please sign in to comment.