This repository has been archived by the owner on Sep 13, 2024. It is now read-only.
Bump README links #18
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 Mediakit | |
on: | |
push: | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
deploy: | |
runs-on: ubuntu-20.04 | |
permissions: | |
contents: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Zip Folder | |
run: cd media && cp ../LICENSE ./ && zip -r ENS_Media_Kit.zip . && mv ENS_Media_Kit.zip ../ | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
prerelease: false | |
files: ENS_Media_Kit.zip | |
generate_release_notes: true | |
body: | | |
### This is the ENS Media Kit. | |
To download the assets see the **Assets** dropdown below. There you will find archive file containing the media-kit. | |
Please don't forget to checkout the [Brand Guidelines](https://ens.domains/brand-guidelines/) before using the assets. | |
We hope you have a wonderful day ☀️🌻 |