@@ -1093,7 +1093,7 @@ jobs:
1093
1093
needs :
1094
1094
-changes
1095
1095
-build-dylib
1096
- if :(github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/') || github.ref == 'refs/heads/dean/release-freeze') && needs.changes.outputs.docs-only == 'false' && !github.event.pull_request.head.repo.fork
1096
+ if :true
1097
1097
runs-on :${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-22.04' }}
1098
1098
permissions :
1099
1099
# Necessary to push docker images to ghcr.io.
@@ -1260,7 +1260,7 @@ jobs:
1260
1260
make build/coder_"$version"_linux_{amd64,arm64,armv7}.tag
1261
1261
1262
1262
# only push if we are on main branch or release branch
1263
- if[[ "${GITHUB_REF}" == "refs/heads/main" || "${GITHUB_REF}" == refs/heads/release/* || "${GITHUB_REF}" == "dean/release-freeze" ]] ; then
1263
+ iftrue ; then
1264
1264
# build and push multi-arch manifest, this depends on the other images
1265
1265
# being pushed so will automatically push them
1266
1266
# note: omitting the -j argument to avoid race conditions when pushing
@@ -1480,10 +1480,7 @@ jobs:
1480
1480
needs :
1481
1481
-changes
1482
1482
-build
1483
- if :|
1484
- (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/') || github.ref == 'refs/heads/dean/release-freeze')
1485
- && needs.changes.outputs.docs-only == 'false'
1486
- && !github.event.pull_request.head.repo.fork
1483
+ if :true
1487
1484
uses :./.github/workflows/deploy.yaml
1488
1485
with :
1489
1486
image :${{ needs.build.outputs.IMAGE }}