mirror of
https://github.com/peaceiris/actions-hugo.git
synced 2025-05-04 22:35:27 +08:00
21 lines
515 B
YAML
21 lines
515 B
YAML
name: Push workflow
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- invalid-tag
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Docker build and print Hugo version
|
|
if: github.event.deleted == false
|
|
env:
|
|
DOCKER_IMAGE: ${{ github.repository }}:${{ github.sha }}
|
|
run: |
|
|
docker build . --file Dockerfile --tag ${DOCKER_IMAGE} &&
|
|
docker run ${DOCKER_IMAGE} version ||
|
|
(echo -e "\e[31m[${GITHUB_WORKFLOW}] failed to build\e[m" && exit 1)
|