Upgrade the Node LTS version to latest #962
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: "Latest Release" | |
on: | |
push: | |
branches: | |
- "main" | |
tags-ignore: | |
- "*" | |
schedule: | |
# run this job at 04:00hrs every day | |
- cron: "0 4 * * *" | |
permissions: | |
contents: "read" | |
packages: "write" | |
jobs: | |
gh_latest: | |
runs-on: "ubuntu-latest" | |
env: | |
UBUNTU_LTS_VERSION: "20.04" | |
steps: | |
- name: "Free disk space" | |
uses: "jlumbroso/free-disk-space@v1.3.1" | |
with: | |
tool-cache: false | |
android: true | |
dotnet: true | |
haskell: true | |
large-packages: true | |
docker-images: true | |
swap-storage: true | |
- uses: "actions/checkout@v4.1.1" | |
with: | |
lfs: true | |
fetch-depth: 0 | |
- name: "Retrieve the short SHA" | |
id: "sha" | |
run: echo "value=$(echo ${GITHUB_SHA::8})" >> "$GITHUB_OUTPUT" | |
- name: "Set up QEMU" | |
uses: "docker/setup-qemu-action@v3" | |
- name: "Set up Docker Buildx" | |
uses: "docker/setup-buildx-action@v3" | |
- name: "Login to GitHub Container Registry" | |
uses: "docker/login-action@v3.0.0" | |
with: | |
registry: "ghcr.io" | |
username: "${{ github.actor }}" | |
password: "${{ secrets.GITHUB_TOKEN }}" | |
- name: "Publish to GitHub Packages" | |
uses: "docker/build-push-action@v5" | |
with: | |
context: . | |
file: "./Dockerfile" | |
build-args: | | |
UBUNTU_VERSION=${{ env.UBUNTU_LTS_VERSION }} | |
platforms: "linux/amd64" | |
push: true | |
tags: | | |
ghcr.io/marvinpinto/kitchensink:${{ env.UBUNTU_LTS_VERSION }}-latest | |
ghcr.io/marvinpinto/kitchensink:${{ env.UBUNTU_LTS_VERSION }}-${{ steps.sha.outputs.value }} |