We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acfb287 commit d6de92bCopy full SHA for d6de92b
.github/workflows/release.yml
@@ -11,7 +11,11 @@ jobs:
11
steps:
12
- uses: actions/checkout@v4
13
- name: Build the Docker image
14
- run: docker build . --file Dockerfile --tag gotocompany/gate:${{ github.ref_name }}
+ run: |
15
+ gem install bundler
16
+ bundle install
17
+ bundle exec rake assets:precompile RAILS_ENV=production
18
+ docker build . --file Dockerfile --tag gotocompany/gate:${{ github.ref_name }}
19
- name: Login to DockerHub
20
run: docker login -u ${{ secrets.DOCKERHUB_USERNAME }} -p ${{ secrets.DOCKERHUB_TOKEN }}
21
- name: Push Docker image
0 commit comments