Skip to content

Bump dependabot/fetch-metadata from 2.0.0 to 2.1.0 #1188

Bump dependabot/fetch-metadata from 2.0.0 to 2.1.0

Bump dependabot/fetch-metadata from 2.0.0 to 2.1.0 #1188

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 }}