Skip to content

Commit

Permalink
separate pipeline and deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
julienhalle committed Oct 31, 2023
1 parent 034657b commit 852e83f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/github-actions-deploy.yml
Original file line number Diff line number Diff line change
@@ -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"
6 changes: 0 additions & 6 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 852e83f

Please # to comment.