Skip to content

Commit 753fa5d

Browse files
authored
Remove manual deployment jobs from workflow (#416)
* Remove manual deployment jobs from workflow * add empty line
1 parent f68be0e commit 753fa5d

1 file changed

Lines changed: 0 additions & 29 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
push:
66
branches:
77
- "main"
8-
- "released"
98
jobs:
109
test:
1110
runs-on: ubuntu-latest
@@ -101,31 +100,3 @@ jobs:
101100
imageName: ghcr.io/ruby-ui/web-devcontainer
102101
cacheFrom: ghcr.io/ruby-ui/web-devcontainer
103102
push: always
104-
105-
106-
next-deploy:
107-
if: github.ref == 'refs/heads/main'
108-
needs: [test, docker-build, verify_components]
109-
runs-on: ubuntu-latest
110-
111-
steps:
112-
- name: Checkout code
113-
uses: actions/checkout@v6
114-
with:
115-
fetch-depth: 0
116-
- name: Deploy to Heroku Next
117-
run: git push https://heroku:${{ secrets.HEROKU_RUBYUI_API_KEY }}@git.heroku.com/rubyui-next.git HEAD:main
118-
119-
120-
released-deploy:
121-
if: github.ref == 'refs/heads/released'
122-
needs: [test]
123-
runs-on: ubuntu-latest
124-
125-
steps:
126-
- name: Checkout code
127-
uses: actions/checkout@v6
128-
with:
129-
fetch-depth: 0
130-
- name: Deploy to Heroku Prod
131-
run: git push https://heroku:${{ secrets.HEROKU_RUBYUI_API_KEY }}@git.heroku.com/rubyui.git HEAD:main

0 commit comments

Comments
 (0)