20 lines
385 B
YAML
20 lines
385 B
YAML
name: Deploy Test5
|
|
run-name: Deploy Test5
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: main
|
|
- name: Resolve Version
|
|
id: version
|
|
run: |
|
|
VERSION=$(cat VERSION | tr -d '[:space:]')
|
|
echo "version=${VERSION}" >> "$GITEA_OUTPUT"
|