Bump Build 💪 #76
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: Bump Build 💪 | |
on: | |
schedule: | |
- cron: "0 10 * * *" | |
workflow_dispatch: | |
jobs: | |
check_codeserver_update: | |
name: check code-server new release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- id: check_update | |
run: | | |
RELEASES=$(gh release list --repo coder/code-server) | |
echo LATEST=$(echo "$RELEASES" | grep -i latest | cut -f 1 | sed 's/v//') >> "$GITHUB_ENV" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- id: image_tag | |
run: | | |
make print-TAG CODE_SERVER_BASE_TAG=${{ env.LATEST }} >> "$GITHUB_ENV" | |
- id: check_image_already_built | |
run: | | |
docker pull ghcr.io/cosmo-workspace/dev-code-server:${{ env.TAG }} && echo ALREADY_EXIST="1" >> "$GITHUB_ENV" || echo | |
- id: printenv | |
run: | | |
printenv | sort | |
- if: env.ALREADY_EXIST != '1' | |
run: gh workflow run build.yaml -f CODE_SERVER_BASE_TAG=${{ env.LATEST }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |