14 lines
315 B
YAML
14 lines
315 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
|
|
run: |
|
|
cat /etc/alpine-release
|