Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added new workflow icons #356

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
40 changes: 20 additions & 20 deletions .github/workflows/push.yml
Expand Up @@ -4,26 +4,26 @@ jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: '10.x'
- name: Version
uses: ./.github/actions/version
- run: npm install
- name: Export SVG from Figma
uses: primer/figma-action@d7844a1927da9b8dd562cbf008c7da20e228607d
env:
FIGMA_FILE_URL: https://www.figma.com/file/FP7lqd1V00LUaT5zvdklkkZr/Octicons
FIGMA_TOKEN: ${{ secrets.FIGMA_TOKEN }}
with:
args: format=svg dir=./lib/build
- run: npm run lint
- run: npm test
- uses: actions/upload-artifact@master
with:
name: octicons
path: ./lib/build
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: "10.x"
- name: Version
uses: ./.github/actions/version
- run: npm install
- name: Export SVG from Figma
uses: primer/figma-action@d7844a1927da9b8dd562cbf008c7da20e228607d
env:
FIGMA_FILE_URL: https://www.figma.com/file/90eyijd4sRfoXphuBZDH2v/Octicons-actions-icons
FIGMA_TOKEN: ${{ secrets.FIGMA_TOKEN }}
with:
args: format=svg dir=./lib/build
- run: npm run lint
- run: npm test
- uses: actions/upload-artifact@master
with:
name: octicons
path: ./lib/build
gem:
runs-on: ubuntu-latest
needs: setup
Expand Down