Skip to content

Commit

Permalink
Merge pull request #69 from duggalsu/fix_github_actions_docker
Browse files Browse the repository at this point in the history
Fix docker github action
  • Loading branch information
duggalsu authored Feb 9, 2024
2 parents 575b6c4 + 8dac771 commit e74f388
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/docker-push-vidvec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,22 @@ jobs:
api:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: master
- name: "Setup Node version"
uses: actions/setup-node@v4
with:
node-version: 20.9.0
- name: Declare some variables
id: vars
shell: bash
run: |
echo "setting variables"
echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
echo "name=sha_short::$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- uses: elgohr/Publish-Docker-Github-Action@master
with:
username: tattletech
Expand Down

0 comments on commit e74f388

Please sign in to comment.