Skip to content

fix

fix #12

Workflow file for this run

name: release
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
branches: [ network-mirror-updater ]
env:
RDME_VERSION: 0.0.4
jobs:
release:
name: Release
runs-on: ubuntu-latest
# environment: release
steps:
- name: Import GPG Key
id: import_gpg
uses: Scalr/[email protected]
env:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
- name: Set Up Cloud SDK
uses: google-github-actions/setup-gcloud@v2
with:
credentials_json: ${{ secrets.GCP_SA_KEY }}
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
# - name: Set Up Go
# uses: actions/setup-go@v5
# with:
# go-version: "1.19"
# - name: Run GoReleaser
# uses: goreleaser/goreleaser-action@v6
# with:
# version: "~> v2"
# args: release --clean
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
# - name: Upload Provider to Registry
# uses: ./.github/actions/upload-provider
# with:
# gcs-bucket: ${{ secrets.BUCKET_NAME }}
# registry-domain: ${{ secrets.DOMAIN }}
# gpg-key-id: ${{ steps.import_gpg.outputs.fingerprint }}
# gpg-pub-key: ${{ steps.import_gpg.outputs.pubkey }}
- name: Update network mirror
uses: ./.github/actions/update-network-mirror
with:
gcs-bucket: ${{ secrets.BUCKET_NAME }}
registry-domain: ${{ secrets.DOMAIN }}
dry-run: false
# docs-publish:
# name: Publish Docs
# needs: [ release ]
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Publish
# uses: readmeio/rdme@v8
# with:
# rdme: docs ./docs --key=${{ secrets.README_API_KEY }} --version=${{ env.RDME_VERSION }}