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
d00188dcea
commit
ca94bec990
1 changed files with 28 additions and 0 deletions
28
.github/workflows/publish-tar.yml
vendored
Normal file
28
.github/workflows/publish-tar.yml
vendored
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish-tar:
|
||||||
|
name: Publish tar as release
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Archive
|
||||||
|
run: tar -cf archive.tar ./*
|
||||||
|
|
||||||
|
- name: Create Release
|
||||||
|
id: create_release
|
||||||
|
uses: actions/create-release@v1.1.4
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
tag_name: ${{ github.sha }}
|
||||||
|
release_name: Release ${{ github.sha }} (Latest)
|
||||||
|
body: |
|
||||||
|
Changes in this Release
|
||||||
|
draft: false
|
||||||
|
prerelease: false
|
Loading…
Add table
Add a link
Reference in a new issue