Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 4d65a25

Browse files
authored
chore: Fix pipeline (#55)
1 parent 1ba2d34 commit 4d65a25

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/deploy_testnet.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
permissions:
2424
contents: read
2525
id-token: write
26+
packages: write
2627

2728
steps:
2829
- name: checkout the source code
@@ -33,7 +34,7 @@ jobs:
3334

3435
- name: login to ghcr
3536
id: ghcr
36-
uses: docker/login-action@v3
37+
uses: docker/login-action@v6
3738
with:
3839
registry: ${{ env.REGISTRY }}
3940
username: ${{ github.repository_owner }}

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright 2020 ChainSafe Systems
22
# SPDX-License-Identifier: LGPL-3.0-only
33

4-
FROM alpine as alpine
4+
FROM alpine AS alpine
55
RUN apk --no-cache add ca-certificates
66

77
FROM golang:1.19 AS builder
@@ -17,5 +17,5 @@ COPY --from=builder /spectre ./
1717
RUN chmod +x ./spectre
1818
RUN mkdir -p /mount
1919
COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
20-
LABEL org.opencontainers.image.source https://github.com/sprintertech/spectre-node
20+
LABEL org.opencontainers.image.source=https://github.com/sprintertech/spectre-node
2121
ENTRYPOINT ["./spectre"]

0 commit comments

Comments
 (0)