This repository contains CFX (FiveM) artifacts for Windows and Linux platforms. It is automatically updated daily to publish new available artifact versions.
This repository serves as a mirror for official CFX artifacts. A GitHub Actions workflow checks daily for new available versions and automatically creates branches for each newly detected version.
- Daily automatic check : The repository automatically checks every day (at midnight UTC) for new available versions for Windows and Linux
- Version branches : Each version is stored in a dedicated branch (
{platform}-artifact-{version}) - Stable branches : Recommended versions are published in the
stable-win32andstable-linuxbranches
The latest recommended version for each platform can be found in the following branches:
- Windows :
stable-win32 - Linux :
stable-linux
Simply clone the repository and checkout the stable branch for your platform:
# For Windows
git clone -b stable-win32 https://github.com/RuneExtend/cfx-artifact.git server
# For Linux
git clone -b stable-linux https://github.com/RuneExtend/cfx-artifact.git serverHere's how to set up your basic server structure with the /serverDir/data structure and clone the repository to a server folder.
# Create directory structure
New-Item -ItemType Directory -Force -Path "C:\serverDir\data"
# Clone the repository to the server folder
git clone -b stable-win32 https://github.com/RuneExtend/cfx-artifact.git C:\serverDir\server# Create directory structure
mkdir -p /serverDir/data
# Clone the repository to the server folder
git clone -b stable-linux https://github.com/RuneExtend/cfx-artifact.git /serverDir/serverAfter running the commands, you should have the following structure:
/serverDir (or C:\serverDir on Windows)
│
├── data/
│ └── (your data files)
│
└── server/
│ └── (CFX artifact files)
Each version is available in a dedicated branch:
win32-artifact-{version}: Windows artifact for a specific versionlinux-artifact-{version}: Linux artifact for a specific version
This repository is released into the public domain under the Unlicense. See the LICENSE file for details.