Defined build job in workflow
All checks were successful
AWS Deploy on Push / build (push) Successful in 2m10s
All checks were successful
AWS Deploy on Push / build (push) Successful in 2m10s
This commit is contained in:
@@ -1,19 +1,24 @@
|
|||||||
name: Gitea Actions Demo
|
name: AWS Deploy on Push
|
||||||
run-name: ${{ gitea.actor }} is testing out Gitea Actions
|
|
||||||
on: [push]
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Explore-Gitea-Actions:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event."
|
- run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event."
|
||||||
- run: echo "This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
- run: echo "This job is now running on a ${{ runner.os }} server hosted by git.fiorinis.com!"
|
||||||
- run: echo "The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
- run: echo "The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
||||||
- name: Check out repository code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- run: echo "The ${{ gitea.repository }} repository has been cloned to the runner."
|
- run: echo "The ${{ gitea.repository }} repository has been cloned to the runner."
|
||||||
- run: echo "The workflow is now ready to test your code on the runner."
|
- uses: actions/checkout@v4
|
||||||
- name: List files in the repository
|
- name: Set up Python 3.9
|
||||||
run: |
|
uses: actions/setup-python@v4
|
||||||
ls ${{ gitea.workspace }}
|
with:
|
||||||
|
python-version: "3.12"
|
||||||
|
- name: Set up Node
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: "22.15"
|
||||||
- run: echo "This job's status is ${{ job.status }}."
|
- run: echo "This job's status is ${{ job.status }}."
|
||||||
6
.vscode/settings.json
vendored
Normal file
6
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"cSpell.words": [
|
||||||
|
"fiorinis",
|
||||||
|
"gitea"
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user