removed old publish script, updated to 0.4
This commit is contained in:
parent
a5a69d4d4e
commit
80c0c50673
56
.github/workflows/AUR_publish.yml
vendored
56
.github/workflows/AUR_publish.yml
vendored
|
@ -1,56 +0,0 @@
|
||||||
name: Package for the AUR
|
|
||||||
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types: [published]
|
|
||||||
|
|
||||||
# Allows you to run this workflow manually from the Actions tab
|
|
||||||
workflow_dispatch:
|
|
||||||
jobs:
|
|
||||||
aur-publish-stable:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Check out sources
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Publish AUR Stable package
|
|
||||||
uses: ulises-jeremias/github-actions-aur-publish@v1
|
|
||||||
with:
|
|
||||||
pkgname: swayfx
|
|
||||||
pkgbuild: ./build-scripts/aur/PKGBUILD
|
|
||||||
assets: |
|
|
||||||
./build-scripts/aur/sway-portals.conf
|
|
||||||
./build-scripts/aur/50-systemd-user.conf
|
|
||||||
./build-scripts/aur/sway.install
|
|
||||||
commit_username: ${{ secrets.AUR_USERNAME }}
|
|
||||||
commit_email: ${{ secrets.AUR_EMAIL }}
|
|
||||||
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
|
|
||||||
commit_message: Update AUR package
|
|
||||||
ssh_keyscan_types: rsa,dsa,ecdsa,ed25519
|
|
||||||
update_pkgver: false
|
|
||||||
|
|
||||||
aur-publish-git:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Check out sources
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Publish AUR -git package
|
|
||||||
uses: ulises-jeremias/github-actions-aur-publish@v1
|
|
||||||
with:
|
|
||||||
pkgname: swayfx-git
|
|
||||||
pkgbuild: ./build-scripts/aur-git/PKGBUILD
|
|
||||||
assets: |
|
|
||||||
./build-scripts/aur/sway-portals.conf
|
|
||||||
./build-scripts/aur-git/50-systemd-user.conf
|
|
||||||
./build-scripts/aur-git/sway.install
|
|
||||||
commit_username: ${{ secrets.AUR_USERNAME }}
|
|
||||||
commit_email: ${{ secrets.AUR_EMAIL }}
|
|
||||||
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
|
|
||||||
commit_message: Update AUR package
|
|
||||||
ssh_keyscan_types: rsa,dsa,ecdsa,ed25519
|
|
||||||
update_pkgver: false
|
|
|
@ -1,7 +1,7 @@
|
||||||
project(
|
project(
|
||||||
'sway',
|
'sway',
|
||||||
'c',
|
'c',
|
||||||
version: '0.3.3',
|
version: '0.4',
|
||||||
license: 'MIT',
|
license: 'MIT',
|
||||||
meson_version: '>=0.60.0',
|
meson_version: '>=0.60.0',
|
||||||
default_options: [
|
default_options: [
|
||||||
|
|
Loading…
Reference in a new issue