We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bafd4ea commit 2d1a2a0Copy full SHA for 2d1a2a0
.github/workflows/docker.yml
@@ -65,10 +65,15 @@ jobs:
65
context: .
66
file: ./docker/${{ matrix.variant }}.dockerfile
67
platforms: linux/amd64,linux/arm64
68
- push: ${{ github.event_name != 'pull_request' }}
+ push: true
69
tags: ${{ steps.docker_meta.outputs.tags }}
70
labels: ${{ steps.docker_meta.outputs.labels }}
71
build-args: |
72
APP_VERSION=${{ steps.docker_meta.outputs.version }}
73
GIT_SHA=${{ github.sha }}
74
DOCKER_TAG=${{ steps.docker_meta.outputs.tags }}
75
+
76
+ - name: Smoke test
77
+ run: docker run ${{ steps.docker_meta.outputs.tags }} bin/rails r "Manyfold::Application.initialized?"
78
+ env:
79
+ RAILS_ENV: production
0 commit comments