Try out auto tag
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after -84h2m48s
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after -84h2m48s
This commit is contained in:
parent
0c31565e4d
commit
9e625812b9
2 changed files with 17 additions and 0 deletions
|
@ -11,6 +11,12 @@ jobs:
|
|||
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v3
|
||||
- name: Print out token
|
||||
run: echo ${{ secrets.TEST_SECRET_TOKEN }}
|
||||
- name: Test auto tag
|
||||
uses: Klemensas/action-autotag@stable
|
||||
with:
|
||||
GITHUB_TOKEN: "${{ secrets.TEST_SECRET_TOKEN }}"
|
||||
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
||||
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
||||
- name: List files in the repository
|
||||
|
|
11
package.json
Normal file
11
package.json
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"name": "act_runner_test",
|
||||
"version": "1.0.0",
|
||||
"description": "Testing act runner",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
Loading…
Reference in a new issue