AUR Release #31
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: AUR Release | |
on: | |
release: | |
types: [released] | |
workflow_dispatch: | |
jobs: | |
aur-release: | |
runs-on: ubuntu-22.04 | |
container: archlinux:base | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v3 | |
- name: Publish Release to AUR | |
run: | | |
export COMMIT_REF=$GITHUB_REF | |
./deploy-aur.sh | |
env: | |
PACKAGE_NAME: rancher-k3d-bin | |
COMMIT_USERNAME: GitHub Action | |
COMMIT_EMAIL: iwilltry42+k3d@gmail.com | |
COMMIT_MESSAGE: "[CI] Updated to $NEW_RELEASE" | |
SSH_PRIVATE_KEY: ${{ secrets.AUR_PRIVATE_KEY }} |