CD #2
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 | ||
on: release | ||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: ankama-launcher | ||
jobs: | ||
Build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Clone repo | ||
uses: actions/checkout@v3 | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.PUSH_CONTAINER_TOKEN }} | ||
- name: Build container | ||
run: docker build -t ${{ env.IMAGE_NAME}}:latest -t ${{ env.IMAGE_NAME}}:${{ GITHUB_REF }} . | ||
Check failure on line 24 in .github/workflows/CD.yml GitHub Actions / CDInvalid workflow file
|
||
- name: Push container | ||
run: | | ||
docker push ${{ env.REGISTRY }}/${{ github.repository }}:latest | ||
docker push ${{ env.REGISTRY }}/${{ github.repository }}:${{ GITHUB_REF }} |