mirror of
https://github.com/zen-browser/flatpak.git
synced 2025-07-08 01:10:06 +02:00
chore: Update Zen Browser desktop file with new launch script and icon paths
This commit is contained in:
parent
6cc2c05ae3
commit
cb18fc3617
1 changed files with 11 additions and 3 deletions
14
.github/workflows/publish-tar.yml
vendored
14
.github/workflows/publish-tar.yml
vendored
|
@ -6,12 +6,16 @@ on:
|
||||||
description: 'Version to publish'
|
description: 'Version to publish'
|
||||||
required: true
|
required: true
|
||||||
default: 'latest'
|
default: 'latest'
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
publish-tar:
|
publish-tar:
|
||||||
permissions: write-all
|
permissions: write-all
|
||||||
name: Publish tar as release
|
name: Publish tar as release
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && startsWith(github.event.commits.message, '[release]:'))
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
@ -20,6 +24,10 @@ jobs:
|
||||||
- name: Archive
|
- name: Archive
|
||||||
run: tar -cf archive.tar ./*
|
run: tar -cf archive.tar ./*
|
||||||
|
|
||||||
|
- name: Output version from file to variable
|
||||||
|
id: version
|
||||||
|
run: echo "::set-output name=version::$(cat version)"
|
||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
id: create_release
|
id: create_release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
|
@ -27,8 +35,8 @@ jobs:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
files: archive.tar
|
files: archive.tar
|
||||||
tag_name: ${{ github.event.inputs.version }}
|
tag_name: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.version || steps.version.outputs.version }}
|
||||||
name: Release for Zen - ${{ github.event.inputs.version }}
|
name: Release for Zen - ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.version || steps.version.outputs.version }}
|
||||||
body: |
|
body: |
|
||||||
### Release ${{ github.event.inputs.version }}
|
### Release ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.version || steps.version.outputs.version }}
|
||||||
- sha: ${{ github.sha }}
|
- sha: ${{ github.sha }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue