fix: brand size #5
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 design-ui-kit | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- '*' | |
jobs: | |
fig2sketch: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
ref: main | |
- name: Fixup git permissions | |
shell: bash | |
run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
- name: git config | |
run: | | |
git config user.name "${GITHUB_ACTOR}" | |
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" | |
- uses: italia/[email protected] # https://github.com/italia/figma-to-sketch-action | |
with: | |
files: 'musei-civici-modello-sito.fig' # File di input .fig (Figma) separati da `|` | |
output_files: 'musei-civici-modello-sito.sketch' # File di output .sketch (Sketch) risultanti separati da `|` | |
- uses: ncipollo/release-action@v1 | |
with: | |
artifacts: '*.fig,*.sketch' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
allowUpdates: true | |
makeLatest: true | |
omitBodyDuringUpdate: true | |
- uses: italia/[email protected] | |
with: | |
slack_token: ${{ secrets.SLACK_TOKEN }} | |
channel_id: ${{ secrets.SLACK_CHANNEL }} | |
project_name: Design Musei UI Kit |