Skip to content

v6.0.140

v6.0.140 #90

Workflow file for this run

name: PKGBUILD CI
on:
push:
tags:
- '*'
jobs:
pkgbuild:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Makepkg Build and Check
id: makepkg
uses: edlanglois/pkgbuild-action@v1
with:
aurDeps: electron13-bin
- name: Print Package Files
run: |
echo "Successfully created the following package archive"
echo "Package: ${{ steps.makepkg.outputs.pkgfile0 }}"
- name: Create release
uses: actions/create-release@v1
id: create_release
with:
draft: false
prerelease: false
body: ''
release_name: ${{ github.ref }}
tag_name: ${{ github.ref }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Package Archive
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ steps.makepkg.outputs.pkgfile0 }}
asset_name: ${{ steps.makepkg.outputs.pkgfile0 }}
asset_content_type: application/zstd