Release inko-git v0.13.2 #29
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: Release | |
run-name: | | |
Release ${{ inputs.name }} v${{ inputs.version }} | |
on: | |
workflow_dispatch: | |
inputs: | |
name: | |
description: 'The name of the package to release' | |
required: true | |
version: | |
description: 'The version to release' | |
required: true | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/inko-lang/aur:main | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Updating permissions | |
run: setfacl -R -m u:build:rwx . | |
- name: Updating PKGBUILD | |
run: | | |
bash scripts/update.sh "${{ inputs.name }}" "${{ inputs.version }}" | |
- name: Updating AUR repository | |
run: | | |
bash scripts/aur.sh "${{ inputs.name }}" "${{ inputs.version }}" \ | |
"${{ secrets.AUR_SSH_KEY }}" |