Skip to content

empty: trigger CI

empty: trigger CI #5

Workflow file for this run

name: 'work2'
# Controls when the action will run
on:
push:
branches:
- '**' # '*' Matches zero or more characters, but does not match the `/` character. '**' matches zero or more of any character.
- '!main'
# Allows to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
job1:
uses: ./.github/workflows/work1.yml
# job1:
# runs-on: 'ubuntu-latest'
#
job2:
runs-on: ubuntu-latest
needs: job1
steps:
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: time
- name: 'w2-j2-step2'
run: |
echo '*** READ time: '
cat time.txt