Skip to content

Commit

Permalink
Bumped GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ystxn committed Mar 9, 2024
1 parent e7bfc40 commit f9a4048
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,37 +10,37 @@ jobs:
outputs:
tag: ${{ steps.meta.outputs.tags }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'yarn'

- run: yarn && yarn build

- uses: docker/metadata-action@v4
- uses: docker/metadata-action@v5
id: meta
with:
images: ghcr.io/${{ github.repository }}
flavor: latest=false
tags: type=sha

- uses: docker/setup-qemu-action@v2
- uses: docker/setup-qemu-action@v3
with:
platforms: arm64

- uses: docker/setup-buildx-action@v2
- uses: docker/setup-buildx-action@v3
with:
platforms: linux/arm64

- uses: docker/login-action@v2
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- uses: docker/build-push-action@v3
- uses: docker/build-push-action@v5
with:
context: .
platforms: linux/arm64
Expand Down

0 comments on commit f9a4048

Please sign in to comment.