test checkout
This commit is contained in:
parent
8638e98989
commit
4d77a6a923
2 changed files with 22 additions and 2 deletions
21
.github/workflows/checkout.yml
vendored
Normal file
21
.github/workflows/checkout.yml
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
name: Create release from tag
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'test*'
|
||||
|
||||
jobs:
|
||||
create_release:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write # needed to create releases
|
||||
steps:
|
||||
- name: Environment Variables
|
||||
run: pwd; env
|
||||
- name: Checkout
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: gh repo clone $GITHUB_REPOSITORY -- --depth 1
|
||||
- name: List files
|
||||
run: find .
|
||||
3
.github/workflows/test.yml
vendored
3
.github/workflows/test.yml
vendored
|
|
@ -2,8 +2,7 @@ name: run-test-on-push
|
|||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
# - feature/embed-http-server
|
||||
- test
|
||||
|
||||
jobs:
|
||||
run-script:
|
||||
|
|
|
|||
Loading…
Reference in a new issue