mirror of https://github.com/icedream/icecon.git
Compare commits
13 Commits
905790d645
...
9bbf1f78fd
Author | SHA1 | Date |
---|---|---|
|
9bbf1f78fd | |
|
07dd58b086 | |
|
09530afe91 | |
|
e305e0107b | |
|
f5e4a2e150 | |
|
7387bb9f96 | |
|
dbd578561d | |
|
028cf027ac | |
|
b114b440d3 | |
|
19b906da47 | |
|
45f22fed96 | |
|
d2ceedf2b9 | |
|
13cbce865a |
|
@ -11,13 +11,13 @@ jobs:
|
|||
steps:
|
||||
-
|
||||
name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
uses: docker/setup-qemu-action@v3
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
uses: docker/setup-buildx-action@v3
|
||||
-
|
||||
name: Check out the repo
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
#-
|
||||
# name: Log in to DockerHub
|
||||
# uses: docker/login-action@v1
|
||||
|
@ -25,20 +25,20 @@ jobs:
|
|||
# username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
# password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
- name: Log in to GitHub container registry
|
||||
uses: docker/login-action@v1
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Extract metadata (tags, labels) for Docker
|
||||
id: meta
|
||||
uses: docker/metadata-action@v3
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
images: |
|
||||
ghcr.io/${{ github.repository }}
|
||||
-
|
||||
name: Build and push
|
||||
uses: docker/build-push-action@v2
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
|
|
|
@ -10,13 +10,13 @@ jobs:
|
|||
steps:
|
||||
|
||||
- name: Set up Go 1.21
|
||||
uses: actions/setup-go@v1
|
||||
uses: actions/setup-go@v4
|
||||
with:
|
||||
go-version: 1.21
|
||||
id: go
|
||||
|
||||
- name: Check out code into the Go module directory
|
||||
uses: actions/checkout@v1
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Build
|
||||
run: go build -v .
|
||||
|
|
Loading…
Reference in New Issue