
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 12s
15 lines
338 B
YAML
15 lines
338 B
YAML
name: Gitea Actions Demo
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
on: [push]
|
|
|
|
jobs:
|
|
Explore-Gitea-Actions:
|
|
container: alpine
|
|
steps:
|
|
- run: apk add nodejs
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- name: Do stuff
|
|
run: |
|
|
cat /etc/alpine-release
|