Initialize Git Repository: 'ATEST'
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
name: TEST
|
||||
on:
|
||||
- push
|
||||
jobs:
|
||||
job1:
|
||||
name: Job 1
|
||||
outputs:
|
||||
VERSION: ${{ steps.environment.outputs.version }}
|
||||
strategy:
|
||||
matrix:
|
||||
include:
|
||||
- branch: rpi-6.12.y
|
||||
runner: cicd.any
|
||||
- branch: rpi-6.18.y
|
||||
runner: cicd.any
|
||||
runs-on: ${{ matrix.runner }}
|
||||
steps:
|
||||
- name: Step 1
|
||||
run: |
|
||||
VERSION='6.12.26'
|
||||
/usr/bin/echo "VERSION=${VERSION}" >> "${GITHUB_OUTPUT}"
|
||||
/usr/bin/echo "Version: ${{ steps.environment.outputs.version }}"
|
||||
/usr/bin/echo "Branch: ${{ matrix.branch }}"
|
||||
/usr/bin/echo "Runner: ${{ matrix.runner }}"
|
||||
job2:
|
||||
needs:
|
||||
- job1
|
||||
uses: PrivLab/ATEST/.gitea/workflows/step_1.yml@main
|
||||
with:
|
||||
VERSION: ${{ needs.sources.outputs.version }}
|
||||
Reference in New Issue
Block a user