File tree 2 files changed +5
-6
lines changed
2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -187,12 +187,7 @@ jobs:
187
187
deploy :
188
188
name : " deploy"
189
189
runs-on : ubuntu-latest
190
- # Temporarily disable the 'deploy' job until issue is fixed:
191
- # https://github.com/coder/coder/issues/287
192
- # As a part of a fix for that, uncomment the below line
193
- # and delete the 'if' after:
194
- # if: github.event_name != 'pull_request'
195
- if : false
190
+ if : github.event_name != 'pull_request'
196
191
permissions :
197
192
contents : read
198
193
id-token : write
Original file line number Diff line number Diff line change 1
1
FROM registry.access.redhat.com/ubi8/ubi:latest
2
2
3
+ RUN yum install -y yum-utils
4
+ RUN yum-config-manager --add-repo https://rpm.releases.hashicorp.com/RHEL/hashicorp.repo
5
+ RUN yum install -y terraform
6
+
3
7
COPY coderd /coder/coderd
4
8
RUN chmod +x /coder/coderd
5
9
You can’t perform that action at this time.
0 commit comments