From 852e83f6520e3a59e270d701953c397f6288bc0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Jouvent-Hall=C3=A9?= Date: Tue, 31 Oct 2023 13:29:52 -0400 Subject: [PATCH] separate pipeline and deployment --- .github/workflows/github-actions-deploy.yml | 9 +++++++++ .github/workflows/github-actions.yml | 6 ------ 2 files changed, 9 insertions(+), 6 deletions(-) create mode 100644 .github/workflows/github-actions-deploy.yml diff --git a/.github/workflows/github-actions-deploy.yml b/.github/workflows/github-actions-deploy.yml new file mode 100644 index 0000000..09f4979 --- /dev/null +++ b/.github/workflows/github-actions-deploy.yml @@ -0,0 +1,9 @@ +name: GitHub Actions Test Deployment +run-name: deploy 0.1-${{ github.run_number }} +on: [push] +jobs: + deployment: + runs-on: ubuntu-latest + environment: test + steps: + - run: echo "Deployed to test" diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index 9d53b70..58639c9 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -6,9 +6,3 @@ jobs: runs-on: ubuntu-latest steps: - run: echo "This is a test" - deployment: - runs-on: ubuntu-latest - environment: test - name: deploy version 0.1-${{ github.run_number }} - steps: - - run: echo "Deployed to test"