Skip to content

Commit

Permalink
Updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
ulises-jeremias committed Aug 28, 2022
1 parent f2dd037 commit e756faf
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/docker-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,27 @@ on:
- v*

jobs:
docker:
docker-latest:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v3
with:
push: true
tags: ulisesjeremias/vsl:latest
docker-tag:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
Expand Down

0 comments on commit e756faf

Please sign in to comment.