13 lines
203 B
YAML
13 lines
203 B
YAML
name: Test
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
test_service:
|
|
runs-on: native
|
|
|
|
steps:
|
|
- name: Get branch
|
|
run: echo "BRANCH=$(${${{ gitea.ref }}##*/})"
|
|
- name: Print
|
|
run: echo $BRANCH
|