Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
range-of-motion committed Dec 9, 2023
1 parent ce52f61 commit e1268d0
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Docker

on: [push]

jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
# - run: docker buildx build --push --platform linux/amd64,linux/arm64 --tag rangeofmotion/budget:${{ github.event.release.tag_name }} -f docker/Dockerfile .

0 comments on commit e1268d0

Please sign in to comment.