From 98b86168e57611b18e2884a8cf5a8fc72c7bd5fd Mon Sep 17 00:00:00 2001 From: Chris Ayers Date: Wed, 29 Jun 2022 10:52:42 -0400 Subject: [PATCH] updated workflows --- .github/workflows/00-basic.yml | 2 +- .github/workflows/00a-basic-filters.yml | 2 +- .github/workflows/01-basic-multiple-jobs.yml | 2 +- .../02-basic-multiple-jobs-needs.yml | 2 +- .../workflows/03-environment-variables.yaml | 34 ---------------- .../workflows/03-environment-variables2.yaml | 39 ------------------- container-example/src/index.html | 2 +- 7 files changed, 5 insertions(+), 78 deletions(-) delete mode 100644 .github/workflows/03-environment-variables.yaml delete mode 100644 .github/workflows/03-environment-variables2.yaml diff --git a/.github/workflows/00-basic.yml b/.github/workflows/00-basic.yml index 1e41a93..332ad12 100644 --- a/.github/workflows/00-basic.yml +++ b/.github/workflows/00-basic.yml @@ -1,6 +1,6 @@ # 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 on: [push, pull_request, workflow_dispatch] diff --git a/.github/workflows/00a-basic-filters.yml b/.github/workflows/00a-basic-filters.yml index d1f75da..0284d2e 100644 --- a/.github/workflows/00a-basic-filters.yml +++ b/.github/workflows/00a-basic-filters.yml @@ -1,6 +1,6 @@ # 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 on: diff --git a/.github/workflows/01-basic-multiple-jobs.yml b/.github/workflows/01-basic-multiple-jobs.yml index eb7ed58..06a44f5 100644 --- a/.github/workflows/01-basic-multiple-jobs.yml +++ b/.github/workflows/01-basic-multiple-jobs.yml @@ -1,6 +1,6 @@ # 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 on: diff --git a/.github/workflows/02-basic-multiple-jobs-needs.yml b/.github/workflows/02-basic-multiple-jobs-needs.yml index 9150df7..4375e39 100644 --- a/.github/workflows/02-basic-multiple-jobs-needs.yml +++ b/.github/workflows/02-basic-multiple-jobs-needs.yml @@ -1,6 +1,6 @@ # 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 on: diff --git a/.github/workflows/03-environment-variables.yaml b/.github/workflows/03-environment-variables.yaml deleted file mode 100644 index 26e90ba..0000000 --- a/.github/workflows/03-environment-variables.yaml +++ /dev/null @@ -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!" diff --git a/.github/workflows/03-environment-variables2.yaml b/.github/workflows/03-environment-variables2.yaml deleted file mode 100644 index cd320d1..0000000 --- a/.github/workflows/03-environment-variables2.yaml +++ /dev/null @@ -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' diff --git a/container-example/src/index.html b/container-example/src/index.html index 7dae513..62ab55d 100644 --- a/container-example/src/index.html +++ b/container-example/src/index.html @@ -7,6 +7,6 @@ Hello World - Hello from Dev Intersections! + Hello from FTA Live! \ No newline at end of file