* Update to Weston 14.0 #19
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Makepkg test | |
on: | |
push: | |
tags: | |
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | |
#branches: [ master ] | |
#paths: | |
# - 'release.txt' | |
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: | |
namcapDisable: true | |
- name: Print Package Files | |
run: | | |
echo "Successfully created the following package archive" | |
echo "Package: ${{ steps.makepkg.outputs.pkgfile0 }}" | |
# - name: Upload Package Archive | |
# uses: actions/upload-artifact@v1 | |
# with: | |
# name: ${{ steps.makepkg.outputs.pkgfile0 }} | |
# path: ${{ steps.makepkg.outputs.pkgfile0 }} | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
#tag_name: v5.13 | |
release_name: Release ${{ github.ref }} | |
#release_name: Release 5.13 | |
body: " " | |
draft: false | |
prerelease: false | |
- name: Upload Release Asset | |
id: upload-release-asset | |
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 |