Bump the development-dependencies group across 1 directory with 10 up… #316
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Main | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
docker-push: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Write app version | |
run: printf "$GITHUB_SHA" > .application-version | |
- name: Build | |
run: > | |
docker build -t onsdigital/eq-questionnaire-runner:latest . | |
- name: Push to Docker Hub | |
run: | | |
echo ${{ secrets.DOCKER_PASSWORD }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin | |
echo "Pushing with tag [latest]" | |
docker push onsdigital/eq-questionnaire-runner:latest |