Skip to content

Initial test of release job. #1

Initial test of release job.

Initial test of release job. #1

Workflow file for this run

name: CI Pipeline
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Echo Test
run: echo "This is supposed to be a test job"
release:
needs: test
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- name: Extract version
run: cat version.txt