Skip to content

Commit

Permalink
Create env.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chbrandt authored Nov 3, 2023
1 parent a1e0df0 commit d7336a5
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/env.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build and Publish Containers

# Controls when the action will run. Triggers the workflow on push request, or repository dispatch
on:
# Runs when pushing to 'stable' branch
push:
# branches:
# - 'stable'
# - 'test'
branches-ignore:
- 'master'
tags:
- '*'

# Run in every PR too
pull_request:

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:


jobs:

env_vars:
runs-on: ubuntu-latest
steps:
- name: Read and define ISIS/ASP versions
run: cat .env

- name: Print versions
run: echo "ISIS-ASP versions: ${ISIS_VERSION}-${ASP_VERSION}"

0 comments on commit d7336a5

Please sign in to comment.