Skip to content

Commit c85925e

Browse files
authored
Stop unintentionally encouraging users to use master branch
1 parent e8d305d commit c85925e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- uses: actions/checkout@v2
5858

5959
- name: Publish AUR package
60-
uses: KSXGitHub/github-actions-deploy-aur@master
60+
uses: KSXGitHub/github-actions-deploy-aur@<TAG>
6161
with:
6262
pkgname: my-awesome-package
6363
pkgbuild: ./PKGBUILD
@@ -68,6 +68,8 @@ jobs:
6868
ssh_keyscan_types: rsa,dsa,ecdsa,ed25519
6969
```
7070
71+
**Note:** Replace `<TAG>` in the above code snippet with a tag of this repo.
72+
7173
**Tip:** To create secrets (such as `secrets.AUR_USERNAME`, `secrets.AUR_EMAIL`, and `secrets.AUR_SSH_PRIVATE_KEY` above), go to `$YOUR_GITHUB_REPO_URL/settings/secrets`. [Read this for more information](https://help.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets).
7274

7375
**Tip:** This action does not generate PKGBUILD for you, you must generate it yourself (e.g. by using actions before this action).

0 commit comments

Comments
 (0)