-
Notifications
You must be signed in to change notification settings - Fork 4
31 lines (30 loc) · 904 Bytes
/
test_action.yaml
File metadata and controls
31 lines (30 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Test Action
on: [push, pull_request]
jobs:
generate_data:
runs-on: ubuntu-latest
name: Generate version data
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Generate version data using local action
uses: ./
- name: Check file contents
run: |
printf "Contents of chart.md:\n"
cat chart.md
printf "\n\n"
printf "Contents of schedule.json:\n"
cat schedule.json
printf "\n\n"
printf "Contents of schedule.md:\n"
cat schedule.md
printf "\n\n"
# Clean up so we can download the artifact
printf "Cleaning up...\n"
rm -f chart.md schedule.json schedule.md
- uses: actions/download-artifact@v4
with:
name: spec-zero-versions
- name: Display structure of downloaded files
run: ls -R