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"