v0.9.0 #6
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: release new version | |
on: | |
workflow_dispatch: | |
release: | |
types: [published] | |
jobs: | |
release-binaries: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: checkout the source code | |
uses: actions/checkout@v3 | |
- uses: wistia/[email protected] | |
- uses: earthly/actions-setup@v1 | |
with: { version: "v${{ env.EARTHLY_TOOL_VERSION }}" } | |
- name: Extract tag name | |
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: Extract short sha | |
run: echo "SHORT_SHA=$(git rev-parse --short "$GITHUB_SHA")" >> $GITHUB_ENV | |
- name: login to registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push the binaries | |
run: | | |
./earthly \ | |
--push \ | |
+release-binaries \ | |
--version=${{ env.RELEASE_VERSION }} \ | |
--commitSHA=${{ env.SHORT_SHA }} \ | |
--token ${{ secrets.GITHUB_TOKEN }} | |
release-image: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: checkout the source code | |
uses: actions/checkout@v3 | |
- uses: wistia/[email protected] | |
- uses: earthly/actions-setup@v1 | |
with: { version: "v${{ env.EARTHLY_TOOL_VERSION }}" } | |
- name: Extract tag name | |
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: Extract short sha | |
run: echo "SHORT_SHA=$(git rev-parse --short "$GITHUB_SHA")" >> $GITHUB_ENV | |
- name: login to registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push the Docker image | |
run: | | |
./earthly \ | |
--push \ | |
+build-image-multiarch \ | |
--version=${{ env.RELEASE_VERSION }} \ | |
--commitSHA=${{ env.SHORT_SHA }} \ | |
--image_name=ghcr.io/${{ github.repository_owner }}/prom-aggregation-gateway |