Skip to content

v0.78.4.3

v0.78.4.3 #79

Workflow file for this run

name: CI
# on:
# push:
# branches:
# - action
# tags:
# - '*'
jobs:
build_and_release:
name: lwrap
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build archlinux packages
uses: countstarlight/arch-makepkg-action@master
with:
scripts: "cd lwrap && makepkg -fsCc --noconfirm --nodeps"
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: lwrap/lwrap-*.pkg*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}