Compare commits
2 Commits
04c9e3a87e
...
f2d9d176d5
Author | SHA1 | Date | |
---|---|---|---|
f2d9d176d5 | |||
b4db791c40 |
47
.gitea/workflows/release.yaml
Normal file
47
.gitea/workflows/release.yaml
Normal file
@ -0,0 +1,47 @@
|
||||
name: release
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
release-default:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v3
|
||||
|
||||
- name: Set up Docker BuildX
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: Login to DockerHub
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_REGISTRY_USER }}
|
||||
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
|
||||
|
||||
- name: Check syntax docker
|
||||
uses: hadolint/hadolint-action@v3.1.0
|
||||
with:
|
||||
dockerfile: Dockerfile
|
||||
ignore: DL3013,DL3008,DL4006
|
||||
|
||||
- name: Push Docker image
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
context: .
|
||||
file: Dockerfile
|
||||
platforms: |
|
||||
linux/amd64
|
||||
linux/arm64
|
||||
push: true
|
||||
no-cache: false
|
||||
tags: |
|
||||
${{ secrets.DOCKER_REGISTRY_USER}}/code-server-dind:latest
|
||||
${{ secrets.DOCKER_REGISTRY_USER}}/code-server-dind:${{ github.sha }}
|
@ -1,7 +1,7 @@
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
# Copyright (C) 2025 Jesus E.
|
||||
#
|
||||
# This file is part of <nombre-del-proyecto>
|
||||
# This file is part of code-server-dind.
|
||||
# This program is licensed under the GNU GPL version 3 or (at your option) any later version.
|
||||
# See the LICENSE file or https://www.gnu.org/licenses/gpl-3.0.txt for more details.
|
||||
|
||||
|
@ -62,7 +62,7 @@ Inicia sesión con las credenciales de tu archivo `.env`.
|
||||
|
||||
- Docker CLI
|
||||
- AWS CLI v2
|
||||
- kubectl (`v1.32.0`)
|
||||
- kubectl (`v1.33.0`)
|
||||
- eksctl
|
||||
- Node.js + npm
|
||||
- Python 3 + pipx + venv
|
||||
|
Loading…
x
Reference in New Issue
Block a user