Skip to content

Commit

Permalink
Update action versions (#406)
Browse files Browse the repository at this point in the history
* Update action versions

* Fix prettier
  • Loading branch information
chrisvire authored Oct 24, 2023
1 parent ca80b17 commit a7e88e1
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '16.17.0'

Expand Down
44 changes: 22 additions & 22 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
name: Release

on:
push:
tags:
- '*'
push:
tags:
- '*'

jobs:
create_release:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v2
create_release:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4

- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
with:
files: |
!(example_data)/** # Exclude 'example_data' folder
!.gitignore
!.prettier*
!.eslint*
!.npmrc
token: ${{ secrets.GITHUB_TOKEN }}
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1.1.0
with:
files: |
!(example_data)/** # Exclude 'example_data' folder
!.gitignore
!.prettier*
!.eslint*
!.npmrc
token: ${{ secrets.GITHUB_TOKEN }}

- name: Get Release URL
run: |
echo "Release URL: ${{ steps.create_release.outputs.upload_url }}"
- name: Get Release URL
run: |
echo "Release URL: ${{ steps.create_release.outputs.upload_url }}"

0 comments on commit a7e88e1

Please sign in to comment.