Browse Source

Remove unecessary stuff

Remove debugging and unecessary steps for the build.
master
BT 5 years ago
committed by GitHub
parent
commit
b4e5eee14c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      .github/workflows/on-tag.yml

7
.github/workflows/on-tag.yml

@ -12,8 +12,6 @@ jobs:
runs-on: ubuntu-18.04
name: Build umbrel middleware
steps:
- name: Show github ref
run: echo $GITHUB_REF
- name: setup environment
run: |
if ! echo "$GITHUB_REF" | grep -qE "$TAG_FMT"; then
@ -25,7 +23,7 @@ jobs:
TAG="$(echo "$GITHUB_REF" | sed -E "s|$TAG_FMT|\1|")"
echo ::set-env name=TAG::"$TAG"
- name: Debug
- name: Show set environment variables
run: |
printf " TAG: %s\n" "$TAG"
- name: Login to Docker for building
@ -47,6 +45,3 @@ jobs:
-t getumbrel/middleware:$TAG \
--output "type=registry" \
.
- name: List all images
run: docker images

Loading…
Cancel
Save