Skip to content

Commit

Permalink
feat: fresh start
Browse files Browse the repository at this point in the history
  • Loading branch information
MuntasirSZN committed Jan 17, 2025
1 parent aa7b6b0 commit 2ca1e59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
14 changes: 1 addition & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
tags:
- "v*"
workflow_dispatch:

jobs:
build:
name: 💠 Build for ${{ matrix.target }}
Expand Down Expand Up @@ -76,7 +75,6 @@ jobs:
with:
name: getquotes-${{ matrix.target }}
path: release/getquotes-${{ matrix.target }}*

release:
name: 🚀 Create Release
runs-on: ubuntu-latest
Expand Down Expand Up @@ -119,24 +117,14 @@ jobs:
- name: 🔒 Update PKGBUILD sha256 checksums
run: |
./update_checksums.sh
- name: 🔓 Decrypt SSH private key
id: decrypt-ssh-key
run: |
# Save the encrypted SSH key to a file
echo "${{ secrets.AUR_SSH_PRIVATE_KEY }}" > id_rsa
# Set permissions for the SSH key
chmod 600 id_rsa
# Add the key to the SSH agent
eval "$(ssh-agent -s)"
echo "${{ secrets.AUR_SSH_PASSPHRASE }}" | ssh-add id_rsa
- name: 💠 Publish To Aur
uses: KSXGitHub/github-actions-deploy-aur@v3.0.1
with:
pkgname: getquotes
pkgbuild: ./PKGBUILD
commit_username: ${{ secrets.AUR_USERNAME }}
commit_email: ${{ secrets.AUR_EMAIL }}
ssh_private_key: ${{ steps.decrypt-ssh-key.outputs.decrypted_key }}
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
commit_message: Update AUR package
ssh_keyscan_types: rsa,ecdsa,ed25519
- name: 💱 Generate Changelog
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "getquotes"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
authors = ["MuntasirSZN <muntasir.joypurhat@gmail.com>"]
description = "A command line tool to get quotes from the WikiQuotes"
Expand Down

0 comments on commit 2ca1e59

Please sign in to comment.