correct actions workflows

This commit is contained in:
Starystars67
2026-04-13 00:27:00 +01:00
parent a90e60ef32
commit d19a10c08b
2 changed files with 6 additions and 10 deletions
+3 -5
View File
@@ -1,14 +1,12 @@
name: Build Docker image and push to release name: Build Docker image and push to release
on: on:
push: release:
# Sequence of patterns matched against refs/tags types: [published]
tags:
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
jobs: jobs:
docker: docker:
if: 'github.event.release' if: "!github.event.release.prerelease"
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Connect to Tailscale - name: Connect to Tailscale
+3 -5
View File
@@ -1,14 +1,12 @@
name: Build Docker image and push to prerelease name: Build Docker image and push to prerelease
on: on:
push: release:
# Sequence of patterns matched against refs/tags types: [published]
tags:
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
jobs: jobs:
docker: docker:
if: 'github.event.prerelease' if: github.event.release.prerelease
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Connect to Tailscale - name: Connect to Tailscale