Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download Code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Python 3.9
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Version Check
Expand All @@ -23,26 +23,26 @@ jobs:
runs-on: ubuntu-latest
needs: version_check
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Node.js 16.15.1
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16.15.1
- run: |
yarn install
yarn build
- name: Upload build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: craco_build_output
path: build/**
deploy:
runs-on: self-hosted
needs: build
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download build artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: craco_build_output
path: build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
node-version: [16.15.1]
steps:
- name: Download Code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
### Changed
- GitHub action versions updated
## [0.5] - 2025-01-15
### Added
- Support `Reddit`
Expand Down
Loading