Skip to content

Bump @vue/test-utils from 2.4.5 to 2.4.6 #1190

Bump @vue/test-utils from 2.4.5 to 2.4.6

Bump @vue/test-utils from 2.4.5 to 2.4.6 #1190

Workflow file for this run

name: Build and deploy
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the production image
run: docker build --pull -t docker.pkg.github.com/ledermann/docker-vue/docker-vue:latest .
- name: Login to GitHub Package Registry
if: github.ref == 'refs/heads/master'
run: docker login docker.pkg.github.com -u $GITHUB_ACTOR -p ${{ secrets.PACKAGES_TOKEN }}
- name: Push the production image
if: github.ref == 'refs/heads/master'
run: docker push "docker.pkg.github.com/ledermann/docker-vue/docker-vue:latest"
- name: Trigger deployment
if: github.ref == 'refs/heads/master'
run: curl -X POST ${{ secrets.DEPLOY_HOOK }}