11 - uses: actions/download-artifact@v4.1.7
15 - name: Import SSH key
18 echo "Importing SSH ley..."
20 echo "$SSH_KEY" | base64 -d > ~/.ssh/id_rsa
21 echo "Updating ~/.ssh/known_hosts..."
22 ssh-keyscan aur.archlinux.org >> ~/.ssh/known_hosts
24 chmod 600 ~/.ssh/id_rsa
27 SSH_KEY: ${{ secrets.ID_RSA }}
29 - name: Set user name and email for git
31 git config --global user.name "${{ secrets.USER_NAME }}"
32 git config --global user.email "${{ secrets.EMAIL}}"
35 id: figma-linux-actions
36 uses: Figma-Linux/figma-linux-actions@main
38 action: publish_aur_git
39 token: ${{ secrets.GITHUB_TOKEN }}