Fix running multiple caches locally #282
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: "Ship It!" | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
cicd: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout code..." | |
uses: actions/checkout@v3 | |
# ⚠️ FLY_WIREGUARD is configured via `fly wireguard create ...` - see 2022.fly/docker/README.md | |
- name: "Set up WireGuard for Fly.io Docker Engine..." | |
env: | |
FLY_WIREGUARD: ${{ secrets.FLY_WIREGUARD }} | |
if: "${{ env.FLY_WIREGUARD != '' }}" | |
run: | | |
sudo DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends wireguard-tools openresolv | |
printf "${{ secrets.FLY_WIREGUARD }}" | sudo tee /etc/wireguard/fly.conf | |
sudo wg-quick up fly | |
# ⚠️ IPv6 is configured via `fly ips private` - see 2022.fly/docker/README.md | |
- name: "Check Fly.io Docker Engine" | |
env: | |
DOCKER_ENGINE_HOST: ${{ secrets.DOCKER_ENGINE_HOST }} | |
if: "${{ env.DOCKER_ENGINE_HOST != '' }}" | |
run: | | |
ping6 -c 5 "$DOCKER_ENGINE_HOST" | |
nc -vz6 "$DOCKER_ENGINE_HOST" 2375 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
- name: "Build, test, publish & deploy..." | |
env: | |
DOCKER_HOST: "${{ secrets.DOCKER_ENGINE_HOST_FQDN }}" | |
IMAGE_OWNER: "${{ secrets.IMAGE_OWNER }}" | |
GHCR_USERNAME: "${{ github.actor }}" | |
GHCR_PASSWORD: "${{ secrets.GHCR_PASSWORD }}" | |
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |
AWS_ACCESS_KEY_ID: "${{ secrets.AWS_ACCESS_KEY_ID }}" | |
AWS_SECRET_ACCESS_KEY: "${{ secrets.AWS_SECRET_ACCESS_KEY }}" | |
run: | | |
cd magefiles | |
go run main.go -w ../ ci cd | |
notify: | |
if: ${{ github.repository == 'thechangelog/changelog.com' && github.ref_name == 'master' }} | |
needs: cicd | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Notify Slack about deploy..." | |
uses: rtCamp/action-slack-notify@v2 | |
env: | |
MSG_MINIMAL: "commit,actions url" | |
SLACK_CHANNEL: dev | |
SLACK_USERNAME: "GitHub Actions" | |
SLACK_FOOTER: "Just got shipped to https://changelog.com" | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} |