Skip to content

Commit

Permalink
ci: updates docker name for push action
Browse files Browse the repository at this point in the history
  • Loading branch information
aviemet committed Jun 12, 2024
1 parent ea3a818 commit 92e72ba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
persist-credentials: false

- name: Set up Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Push Docker Image to GitHub Packages
run: |
NEW_VERSION=$(node -p "require('./package.json').version")
docker tag osc ghcr.io/${{ github.repository_owner }}/osc:${NEW_VERSION}
docker push ghcr.io/${{ github.repository_owner }}/osc:${NEW_VERSION}
docker tag osc ghcr.io/${{ github.repository_owner }}/osc_controller:${NEW_VERSION}
docker push ghcr.io/${{ github.repository_owner }}/osc_controller:${NEW_VERSION}
env:
GHCR_PAT: ${{ secrets.GH_AUTH_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ jobs:
bundler-cache: true

- name: Set up Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 19.x
node-version: 20.x
cache: 'yarn'

- name: Set up Yarn
Expand Down

0 comments on commit 92e72ba

Please sign in to comment.