updated workflows

هذا الالتزام موجود في:
Chris Ayers
2022-06-29 10:52:42 -04:00
الأصل 6faf5e4ef7
التزام 98b86168e5
7 ملفات معدلة مع 5 إضافات و78 حذوفات

عرض الملف

@@ -1,6 +1,6 @@
# This is a basic workflow to help you get started with Actions # This is a basic workflow to help you get started with Actions
name: Basic Workflow name: 00-Basic Workflow
# Controls when the workflow will run # Controls when the workflow will run
on: [push, pull_request, workflow_dispatch] on: [push, pull_request, workflow_dispatch]

عرض الملف

@@ -1,6 +1,6 @@
# This is a basic workflow to help you get started with Actions # This is a basic workflow to help you get started with Actions
name: Basic Workflow name: 00-Basic Workflow
# Controls when the workflow will run # Controls when the workflow will run
on: on:

عرض الملف

@@ -1,6 +1,6 @@
# This is a basic workflow to help you get started with Actions # This is a basic workflow to help you get started with Actions
name: Basic Workflow with Multiple Jobs name: 01-Basic Workflow with Multiple Jobs
# Controls when the workflow will run # Controls when the workflow will run
on: on:

عرض الملف

@@ -1,6 +1,6 @@
# This is a basic workflow to help you get started with Actions # This is a basic workflow to help you get started with Actions
name: Basic Dependencies name: 02-Basic Dependencies
# Controls when the workflow will run # Controls when the workflow will run
on: on:

عرض الملف

@@ -1,34 +0,0 @@
# This is a basic workflow to help you get started with Actions
name: Variables
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
Greeting: 'Hello'
Name: 'World'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Runs a single command using the runners shell
- name: Run a one-line script
run: echo "$Greeting, $Name!"

عرض الملف

@@ -1,39 +0,0 @@
# This is a basic workflow to help you get started with Actions
name: Variable Hierarchy
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
Greeting: 'Hello'
Location: 'Workflow'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
env:
Location: 'Job'
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Runs a single command using the runners shell
- name: Run a one-line script
run: echo "$Greeting, $Name! from $Location"
env:
Name: 'World'
Location: 'Step'

عرض الملف

@@ -7,6 +7,6 @@
<title>Hello World</title> <title>Hello World</title>
</head> </head>
<body> <body>
Hello from Dev Intersections! Hello from FTA Live!
</body> </body>
</html> </html>