Skip to content

Bump tar in the npm_and_yarn group across 1 directory (#612) #1185

Bump tar in the npm_and_yarn group across 1 directory (#612)

Bump tar in the npm_and_yarn group across 1 directory (#612) #1185

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