mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 16:55:37 +02:00
🐛 fix(git): Fix release (#45)
## Description **What issue are you solving (or what feature are you adding) and how are you doing it?** Well, I tried doing a release and it did not go as expected, due to some issues with the git_token plus concurrency. So, i have fixed that... let us do a re-release.
This commit is contained in:
52
.github/workflows/base.yml
vendored
52
.github/workflows/base.yml
vendored
@@ -19,13 +19,13 @@ on:
|
|||||||
release:
|
release:
|
||||||
types: [created]
|
types: [created]
|
||||||
|
|
||||||
concurrency:
|
# concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_id || github.event.pull_request.number || github.ref }}
|
# group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_id || github.event.pull_request.number || github.ref }}
|
||||||
cancel-in-progress: true
|
# cancel-in-progress: true
|
||||||
|
|
||||||
env:
|
env:
|
||||||
REGISTRY: ghcr.io
|
REGISTRY: ghcr.io
|
||||||
IMAGE_NAME: wanjohiryan/netris
|
IMAGE_NAME: netridotme/netris
|
||||||
BASE_TAG_PREFIX: base
|
BASE_TAG_PREFIX: base
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
@@ -67,7 +67,49 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
registry: ${{ env.REGISTRY }}
|
registry: ${{ env.REGISTRY }}
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GIT_MASTER_TOKEN }}
|
||||||
|
-
|
||||||
|
name: Extract Container metadata
|
||||||
|
id: meta
|
||||||
|
uses: docker/metadata-action@v5
|
||||||
|
with:
|
||||||
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/${{ env.BASE_TAG_PREFIX }}
|
||||||
|
#
|
||||||
|
#tag on release, and a nightly build for 'dev'
|
||||||
|
tags: |
|
||||||
|
type=raw,value=nightly,enable={{is_default_branch}}
|
||||||
|
type=ref,event=tag
|
||||||
|
type=semver,pattern={{version}}
|
||||||
|
type=semver,pattern={{major}}.{{minor}}
|
||||||
|
type=semver,pattern={{major}}
|
||||||
|
-
|
||||||
|
name: Build Docker image
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
file: base.Dockerfile
|
||||||
|
context: ./
|
||||||
|
push: true
|
||||||
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
|
|
||||||
|
build-docker-release:
|
||||||
|
name: Build image on release
|
||||||
|
if: ${{ github.event_name == 'release' }}
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
packages: write
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Checkout repo
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
-
|
||||||
|
name: Log into registry ${{ env.REGISTRY }}
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ${{ env.REGISTRY }}
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.GIT_MASTER_TOKEN }}
|
||||||
-
|
-
|
||||||
name: Extract Container metadata
|
name: Extract Container metadata
|
||||||
id: meta
|
id: meta
|
||||||
|
|||||||
52
.github/workflows/relay.yml
vendored
52
.github/workflows/relay.yml
vendored
@@ -19,13 +19,13 @@ on:
|
|||||||
release:
|
release:
|
||||||
types: [created]
|
types: [created]
|
||||||
|
|
||||||
concurrency:
|
# concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_id || github.event.pull_request.number || github.ref }}
|
# group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_id || github.event.pull_request.number || github.ref }}
|
||||||
cancel-in-progress: true
|
# cancel-in-progress: true
|
||||||
|
|
||||||
env:
|
env:
|
||||||
REGISTRY: ghcr.io
|
REGISTRY: ghcr.io
|
||||||
IMAGE_NAME: wanjohiryan/netris
|
IMAGE_NAME: netrisdotme/netris
|
||||||
BASE_TAG_PREFIX: relay
|
BASE_TAG_PREFIX: relay
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
@@ -67,7 +67,49 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
registry: ${{ env.REGISTRY }}
|
registry: ${{ env.REGISTRY }}
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GIT_MASTER_TOKEN }}
|
||||||
|
-
|
||||||
|
name: Extract Container metadata
|
||||||
|
id: meta
|
||||||
|
uses: docker/metadata-action@v5
|
||||||
|
with:
|
||||||
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/${{ env.BASE_TAG_PREFIX }}
|
||||||
|
#
|
||||||
|
#tag on release, and a nightly build for 'dev'
|
||||||
|
tags: |
|
||||||
|
type=raw,value=nightly,enable={{is_default_branch}}
|
||||||
|
type=ref,event=tag
|
||||||
|
type=semver,pattern={{version}}
|
||||||
|
type=semver,pattern={{major}}.{{minor}}
|
||||||
|
type=semver,pattern={{major}}
|
||||||
|
-
|
||||||
|
name: Build Docker image
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
file: relay.Dockerfile
|
||||||
|
context: ./
|
||||||
|
push: true
|
||||||
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
|
|
||||||
|
build-docker-release:
|
||||||
|
name: Build image on release
|
||||||
|
if: ${{ github.event_name == 'release' }}
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
packages: write
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Checkout repo
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
-
|
||||||
|
name: Log into registry ${{ env.REGISTRY }}
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ${{ env.REGISTRY }}
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.GIT_MASTER_TOKEN }}
|
||||||
-
|
-
|
||||||
name: Extract Container metadata
|
name: Extract Container metadata
|
||||||
id: meta
|
id: meta
|
||||||
|
|||||||
52
.github/workflows/server.yml
vendored
52
.github/workflows/server.yml
vendored
@@ -23,12 +23,12 @@ on:
|
|||||||
|
|
||||||
env:
|
env:
|
||||||
REGISTRY: ghcr.io
|
REGISTRY: ghcr.io
|
||||||
IMAGE_NAME: wanjohiryan/netris
|
IMAGE_NAME: netrisdotme/netris
|
||||||
BASE_TAG_PREFIX: server
|
BASE_TAG_PREFIX: server
|
||||||
|
|
||||||
concurrency:
|
# concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_id || github.event.pull_request.number || github.ref }}
|
# group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_id || github.event.pull_request.number || github.ref }}
|
||||||
cancel-in-progress: true
|
# cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-docker-pr:
|
build-docker-pr:
|
||||||
@@ -69,7 +69,49 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
registry: ${{ env.REGISTRY }}
|
registry: ${{ env.REGISTRY }}
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GIT_MASTER_TOKEN }}
|
||||||
|
-
|
||||||
|
name: Extract Container metadata
|
||||||
|
id: meta
|
||||||
|
uses: docker/metadata-action@v5
|
||||||
|
with:
|
||||||
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/${{ env.BASE_TAG_PREFIX }}
|
||||||
|
#
|
||||||
|
#tag on release, and a nightly build for 'dev'
|
||||||
|
tags: |
|
||||||
|
type=raw,value=nightly,enable={{is_default_branch}}
|
||||||
|
type=ref,event=tag
|
||||||
|
type=semver,pattern={{version}}
|
||||||
|
type=semver,pattern={{major}}.{{minor}}
|
||||||
|
type=semver,pattern={{major}}
|
||||||
|
-
|
||||||
|
name: Build Docker image
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
file: server.Dockerfile
|
||||||
|
context: ./
|
||||||
|
push: true
|
||||||
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
|
|
||||||
|
build-docker-release:
|
||||||
|
name: Build image on release
|
||||||
|
if: ${{ github.event_name == 'release' }}
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
packages: write
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Checkout repo
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
-
|
||||||
|
name: Log into registry ${{ env.REGISTRY }}
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ${{ env.REGISTRY }}
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.GIT_MASTER_TOKEN }}
|
||||||
-
|
-
|
||||||
name: Extract Container metadata
|
name: Extract Container metadata
|
||||||
id: meta
|
id: meta
|
||||||
|
|||||||
10
.github/workflows/warp.yml
vendored
10
.github/workflows/warp.yml
vendored
@@ -22,12 +22,12 @@ on:
|
|||||||
|
|
||||||
env:
|
env:
|
||||||
REGISTRY: ghcr.io
|
REGISTRY: ghcr.io
|
||||||
IMAGE_NAME: wanjohiryan/netris
|
IMAGE_NAME: netrisdotme/netris
|
||||||
BASE_TAG_PREFIX: warp
|
BASE_TAG_PREFIX: warp
|
||||||
|
|
||||||
concurrency:
|
# concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_id || github.event.pull_request.number || github.ref }}
|
# group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_id || github.event.pull_request.number || github.ref }}
|
||||||
cancel-in-progress: true
|
# cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-docker-pr:
|
build-docker-pr:
|
||||||
@@ -72,7 +72,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
registry: ${{ env.REGISTRY }}
|
registry: ${{ env.REGISTRY }}
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GIT_MASTER_TOKEN }}
|
||||||
-
|
-
|
||||||
name: Extract Container metadata
|
name: Extract Container metadata
|
||||||
id: meta
|
id: meta
|
||||||
|
|||||||
Reference in New Issue
Block a user