update packages #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Marty Nightly | |
on: | |
push: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build the Docker image | |
run: docker build . -t msawatzky75/marty:nightly | |
- name: Login to docker | |
run: docker login -u msawatzky75 -p ${{secrets.DOCKER_ACCESS_TOKEN}} | |
- name: Push the Docker image | |
run: docker push msawatzky75/marty:nightly |