あえて古めな依存書いてみる #8
Workflow file for this run
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: CD for v3(main) | |
on: | |
push: | |
branches: | |
- v3 | |
- topic/argocd | |
workflow_dispatch: | |
env: | |
DOCKER_TAG_API_URI: https://registry.hub.docker.com/v2/repositories/na2na/jetdisc/tags | |
jobs: | |
Prepare: | |
name: Prepare | |
runs-on: ubuntu-latest | |
outputs: | |
tag_exists: ${{ steps.check_docker_hub.outputs.tag_exists }} | |
JETDISC_VERSION: ${{ steps.check_docker_hub.outputs.JETDISC_VERSION }} | |
PREVIOIUS_LATEST_TAG: ${{ steps.get_previous_latest_tag.outputs.PREVIOIUS_LATEST_TAG }} | |
LATEST_TAG: ${{ steps.genelate_latest_tag.outputs.LATEST_TAG }} | |
steps: | |
- name: Check out the repo | |
uses: actions/[email protected] | |
- name: Get current version | |
id: get_version | |
run: | | |
echo "JETDISC_VERSION=$(cat package.json | jq -r '.version')" >> $GITHUB_ENV | |
- name: Check Docker Hub | |
id: check_docker_hub | |
# NOTE: 実験用にすでに存在しててもOUTPUT吐き出す | |
run: | | |
DOCKER_HUB_TAGS=$(curl -s ${{ env.DOCKER_TAG_API_URI }} | jq -r '.results[] | .name') | |
if [ $(echo $DOCKER_HUB_TAGS | grep -c $JETDISC_VERSION) -eq 1 ]; then | |
echo "Tag $JETDISC_VERSION already exists on Docker Hub." | |
echo "JETDISC_VERSION=$JETDISC_VERSION" >> $GITHUB_OUTPUT | |
else | |
echo "Tag $JETDISC_VERSION does not exist on Docker Hub." | |
echo "tag_exists=false" >> $GITHUB_OUTPUT | |
echo "JETDISC_VERSION=$JETDISC_VERSION" >> $GITHUB_OUTPUT | |
fi | |
- name: Get Current Latest Tag | |
id: get_previous_latest_tag | |
run: | | |
echo "PREVIOIUS_LATEST_TAG=$(curl -s $DOCKER_TAG_API_URI | jq -r '.results | sort_by(.last_updated) | last | .name')" >> $GITHUB_OUTPUT | |
- name: Genelate Latest Tag by commit hash | |
id: genelate_latest_tag | |
run: | | |
echo "LATEST_TAG=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
Build-and-Push-to-Docker-Hub: | |
needs: | |
- Prepare | |
# if: ${{ needs.Prepare.outputs.tag_exists == 'false' }} | |
with: | |
JETDISC_VERSION: ${{ needs.Prepare.outputs.JETDISC_VERSION }} | |
IMAGE_REPOSITORY: na2na | |
IMAGE_NAME: jetdisc | |
LATEST_TAG: ${{ needs.Prepare.outputs.LATEST_TAG }} | |
uses: ./.github/workflows/image-build-and-publish.yml | |
secrets: inherit |