mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-04-07 21:06:59 +00:00
Compare commits
3 Commits
use-shared
...
buildx
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
84470a0fa7 | ||
|
|
b470b82e2a | ||
|
|
a0700e7399 |
7
.github/workflows/pull-requests.yaml
vendored
7
.github/workflows/pull-requests.yaml
vendored
@@ -27,15 +27,22 @@ jobs:
|
|||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
fetch-tags: true
|
fetch-tags: true
|
||||||
|
|
||||||
|
- name: Set up Docker config
|
||||||
|
run: cp -r ~/.docker ${{ runner.temp }}/.docker
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
- name: Login to GitHub Container Registry
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
username: ${{ github.repository_owner }}
|
username: ${{ github.repository_owner }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
|
env:
|
||||||
|
DOCKER_CONFIG: ${{ runner.temp }}/.docker
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: make build
|
run: make build
|
||||||
|
env:
|
||||||
|
DOCKER_CONFIG: ${{ runner.temp }}/.docker
|
||||||
|
|
||||||
- name: Build Talos image
|
- name: Build Talos image
|
||||||
run: make -C packages/core/installer talos-nocloud
|
run: make -C packages/core/installer talos-nocloud
|
||||||
|
|||||||
4
.github/workflows/tags.yaml
vendored
4
.github/workflows/tags.yaml
vendored
@@ -99,11 +99,15 @@ jobs:
|
|||||||
username: ${{ github.repository_owner }}
|
username: ${{ github.repository_owner }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
|
env:
|
||||||
|
DOCKER_CONFIG: ${{ runner.temp }}/.docker
|
||||||
|
|
||||||
# Build project artifacts
|
# Build project artifacts
|
||||||
- name: Build
|
- name: Build
|
||||||
if: steps.check_release.outputs.skip == 'false'
|
if: steps.check_release.outputs.skip == 'false'
|
||||||
run: make build
|
run: make build
|
||||||
|
env:
|
||||||
|
DOCKER_CONFIG: ${{ runner.temp }}/.docker
|
||||||
|
|
||||||
# Commit built artifacts
|
# Commit built artifacts
|
||||||
- name: Commit release artifacts
|
- name: Commit release artifacts
|
||||||
|
|||||||
Reference in New Issue
Block a user