Compare commits
2 Commits
de6ca4ac64
...
3fdf5f8a30
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3fdf5f8a30 | ||
|
|
f3479abb83 |
33
.gitea/workflows/test-on-push.yml.unk
Normal file
33
.gitea/workflows/test-on-push.yml.unk
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
name: Make website accessible
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
copy-websites:
|
||||||
|
runs-on: alpine-latest
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: bash
|
||||||
|
working-directory: demo-workflow-scripts
|
||||||
|
steps:
|
||||||
|
- name: Show the demo running
|
||||||
|
env:
|
||||||
|
VAR1: This is
|
||||||
|
VAR2: A Demo of
|
||||||
|
VAR3: GitHub Actions
|
||||||
|
VAR4: Workflow jobs
|
||||||
|
run: |
|
||||||
|
echo $VAR1 $VAR2 $VAR3 $VAR4.
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- run: ls -lR .
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#Checkout repository
|
||||||
|
#Copy HTML to Webserver
|
||||||
|
#Initiate W3m Validator tools on new files
|
||||||
|
#Move Report to repository
|
||||||
Reference in New Issue
Block a user